mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
|
# Copyright 2016 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
import("//testing/test.gni")
|
||
|
|
||
|
viz_remove_configs = []
|
||
|
viz_add_configs = [ "//build/config:precompiled_headers" ]
|
||
|
|
||
|
if (!is_debug && (is_win || is_android)) {
|
||
|
viz_remove_configs += [ "//build/config/compiler:default_optimization" ]
|
||
|
viz_add_configs += [ "//build/config/compiler:optimize_max" ]
|
||
|
}
|
||
|
|
||
|
template("viz_source_set") {
|
||
|
source_set(target_name) {
|
||
|
forward_variables_from(invoker, "*", [ "configs" ])
|
||
|
if (defined(invoker.configs)) {
|
||
|
configs += invoker.configs
|
||
|
}
|
||
|
configs -= viz_remove_configs
|
||
|
configs += viz_add_configs
|
||
|
}
|
||
|
}
|
||
|
|
||
|
template("viz_component") {
|
||
|
component(target_name) {
|
||
|
forward_variables_from(invoker, "*", [ "configs" ])
|
||
|
if (defined(invoker.configs)) {
|
||
|
configs += invoker.configs
|
||
|
}
|
||
|
configs -= viz_remove_configs
|
||
|
configs += viz_add_configs
|
||
|
}
|
||
|
}
|
||
|
|
||
|
template("viz_static_library") {
|
||
|
static_library(target_name) {
|
||
|
forward_variables_from(invoker, "*", [ "configs" ])
|
||
|
if (defined(invoker.configs)) {
|
||
|
configs += invoker.configs
|
||
|
}
|
||
|
configs -= viz_remove_configs
|
||
|
configs += viz_add_configs
|
||
|
}
|
||
|
}
|
||
|
|
||
|
template("viz_test") {
|
||
|
test(target_name) {
|
||
|
forward_variables_from(invoker, "*", [ "configs" ])
|
||
|
if (defined(invoker.configs)) {
|
||
|
configs += invoker.configs
|
||
|
}
|
||
|
configs -= viz_remove_configs
|
||
|
configs += viz_add_configs
|
||
|
}
|
||
|
}
|