| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 assert(!is_ios) | 5 assert(!is_ios) |
| 6 | 6 |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 9 | 9 |
| 10 visibility = [ | 10 visibility = [ |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 ] | 308 ] |
| 309 } else { | 309 } else { |
| 310 sources -= [ | 310 sources -= [ |
| 311 "text/AtomicStringCF.cpp", | 311 "text/AtomicStringCF.cpp", |
| 312 "text/StringImplCF.cpp", | 312 "text/StringImplCF.cpp", |
| 313 ] | 313 ] |
| 314 } | 314 } |
| 315 | 315 |
| 316 if (remove_webcore_debug_symbols) { | 316 if (remove_webcore_debug_symbols) { |
| 317 configs -= [ "//build/config/compiler:default_symbols" ] | 317 configs -= [ "//build/config/compiler:default_symbols" ] |
| 318 configs += [ "//build/config/compiler:no_symbols" ] | 318 configs += remove_webcore_symbols_config |
| 319 } | 319 } |
| 320 } | 320 } |
| 321 | 321 |
| 322 test("wtf_unittests") { | 322 test("wtf_unittests") { |
| 323 visibility = [] # Allow re-assignment of list. | 323 visibility = [] # Allow re-assignment of list. |
| 324 visibility = [ "*" ] | 324 visibility = [ "*" ] |
| 325 | 325 |
| 326 sources = [ | 326 sources = [ |
| 327 "ASCIICTypeTest.cpp", | 327 "ASCIICTypeTest.cpp", |
| 328 "AssertionsTest.cpp", | 328 "AssertionsTest.cpp", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 ] | 377 ] |
| 378 | 378 |
| 379 deps = [ | 379 deps = [ |
| 380 ":wtf", | 380 ":wtf", |
| 381 "//base", | 381 "//base", |
| 382 "//base/test:test_support", | 382 "//base/test:test_support", |
| 383 "//testing/gmock", | 383 "//testing/gmock", |
| 384 "//testing/gtest", | 384 "//testing/gtest", |
| 385 ] | 385 ] |
| 386 } | 386 } |
| OLD | NEW |