mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
13 lines
300 B
Plaintext
13 lines
300 B
Plaintext
|
# Don't separate simple statements in a scope.
|
||
|
|
||
|
import("//testing/test.gni")
|
||
|
|
||
|
test("something") {
|
||
|
if (is_linux) {
|
||
|
sources -= [ "file_version_info_unittest.cc" ]
|
||
|
sources += [ "nix/xdg_util_unittest.cc" ]
|
||
|
defines = [ "USE_SYMBOLIZE" ]
|
||
|
configs += [ "//build/config/linux:glib" ]
|
||
|
}
|
||
|
}
|