| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 "allocator/PartitionAllocTest.cpp", | 327 "allocator/PartitionAllocTest.cpp", |
| 328 "dtoa_test.cpp", | 328 "dtoa_test.cpp", |
| 329 "testing/RunAllTests.cpp", | 329 "testing/RunAllTests.cpp", |
| 330 "text/AtomicStringTest.cpp", | 330 "text/AtomicStringTest.cpp", |
| 331 "text/CStringTest.cpp", | 331 "text/CStringTest.cpp", |
| 332 "text/IntegerToStringConversionTest.cpp", | 332 "text/IntegerToStringConversionTest.cpp", |
| 333 "text/StringBufferTest.cpp", | 333 "text/StringBufferTest.cpp", |
| 334 "text/StringBuilderTest.cpp", | 334 "text/StringBuilderTest.cpp", |
| 335 "text/StringImplTest.cpp", | 335 "text/StringImplTest.cpp", |
| 336 "text/StringOperatorsTest.cpp", | 336 "text/StringOperatorsTest.cpp", |
| 337 "text/StringToNumberTest.cpp", |
| 337 "text/StringViewTest.cpp", | 338 "text/StringViewTest.cpp", |
| 338 "text/TextCodecICUTest.cpp", | 339 "text/TextCodecICUTest.cpp", |
| 339 "text/TextCodecLatin1Test.cpp", | 340 "text/TextCodecLatin1Test.cpp", |
| 340 "text/TextCodecReplacementTest.cpp", | 341 "text/TextCodecReplacementTest.cpp", |
| 341 "text/TextCodecTest.cpp", | 342 "text/TextCodecTest.cpp", |
| 342 "text/TextCodecUTF8Test.cpp", | 343 "text/TextCodecUTF8Test.cpp", |
| 343 "text/TextCodecUserDefinedTest.cpp", | 344 "text/TextCodecUserDefinedTest.cpp", |
| 344 "text/TextEncodingTest.cpp", | 345 "text/TextEncodingTest.cpp", |
| 345 "text/WTFStringTest.cpp", | 346 "text/WTFStringTest.cpp", |
| 346 "typed_arrays/ArrayBufferBuilderTest.cpp", | 347 "typed_arrays/ArrayBufferBuilderTest.cpp", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 359 ] | 360 ] |
| 360 | 361 |
| 361 deps = [ | 362 deps = [ |
| 362 ":wtf", | 363 ":wtf", |
| 363 "//base", | 364 "//base", |
| 364 "//base/test:test_support", | 365 "//base/test:test_support", |
| 365 "//testing/gmock", | 366 "//testing/gmock", |
| 366 "//testing/gtest", | 367 "//testing/gtest", |
| 367 ] | 368 ] |
| 368 } | 369 } |
| OLD | NEW |