| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 "TreeNode.h", | 126 "TreeNode.h", |
| 127 "TypeTraits.h", | 127 "TypeTraits.h", |
| 128 "Vector.h", | 128 "Vector.h", |
| 129 "VectorTraits.h", | 129 "VectorTraits.h", |
| 130 "WTF.cpp", | 130 "WTF.cpp", |
| 131 "WTF.h", | 131 "WTF.h", |
| 132 "WTFExport.h", | 132 "WTFExport.h", |
| 133 "WTFThreadData.cpp", | 133 "WTFThreadData.cpp", |
| 134 "WTFThreadData.h", | 134 "WTFThreadData.h", |
| 135 "WeakPtr.h", | 135 "WeakPtr.h", |
| 136 "allocator/AddressSpaceRandomization.cpp", | |
| 137 "allocator/AddressSpaceRandomization.h", | |
| 138 "allocator/PageAllocator.cpp", | |
| 139 "allocator/PageAllocator.h", | |
| 140 "allocator/PartitionAlloc.cpp", | |
| 141 "allocator/PartitionAlloc.h", | |
| 142 "allocator/PartitionAllocator.cpp", | 136 "allocator/PartitionAllocator.cpp", |
| 143 "allocator/PartitionAllocator.h", | 137 "allocator/PartitionAllocator.h", |
| 144 "allocator/Partitions.cpp", | 138 "allocator/Partitions.cpp", |
| 145 "allocator/Partitions.h", | 139 "allocator/Partitions.h", |
| 146 "build_config.h", | 140 "build_config.h", |
| 147 "debug/Alias.h", | 141 "debug/Alias.h", |
| 148 "debug/CrashLogging.h", | 142 "debug/CrashLogging.h", |
| 149 "dtoa.cpp", | 143 "dtoa.cpp", |
| 150 "dtoa.h", | 144 "dtoa.h", |
| 151 "dtoa/bignum-dtoa.cc", | 145 "dtoa/bignum-dtoa.cc", |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 "ListHashSetTest.cpp", | 309 "ListHashSetTest.cpp", |
| 316 "MathExtrasTest.cpp", | 310 "MathExtrasTest.cpp", |
| 317 "OptionalTest.cpp", | 311 "OptionalTest.cpp", |
| 318 "PassRefPtrTest.cpp", | 312 "PassRefPtrTest.cpp", |
| 319 "RefPtrTest.cpp", | 313 "RefPtrTest.cpp", |
| 320 "StringExtrasTest.cpp", | 314 "StringExtrasTest.cpp", |
| 321 "StringHasherTest.cpp", | 315 "StringHasherTest.cpp", |
| 322 "TreeNodeTest.cpp", | 316 "TreeNodeTest.cpp", |
| 323 "TypeTraitsTest.cpp", | 317 "TypeTraitsTest.cpp", |
| 324 "VectorTest.cpp", | 318 "VectorTest.cpp", |
| 325 "allocator/PartitionAllocTest.cpp", | |
| 326 "dtoa_test.cpp", | 319 "dtoa_test.cpp", |
| 327 "testing/RunAllTests.cpp", | 320 "testing/RunAllTests.cpp", |
| 328 "text/AtomicStringTest.cpp", | 321 "text/AtomicStringTest.cpp", |
| 329 "text/CStringTest.cpp", | 322 "text/CStringTest.cpp", |
| 330 "text/IntegerToStringConversionTest.cpp", | 323 "text/IntegerToStringConversionTest.cpp", |
| 331 "text/StringBufferTest.cpp", | 324 "text/StringBufferTest.cpp", |
| 332 "text/StringBuilderTest.cpp", | 325 "text/StringBuilderTest.cpp", |
| 333 "text/StringImplTest.cpp", | 326 "text/StringImplTest.cpp", |
| 334 "text/StringOperatorsTest.cpp", | 327 "text/StringOperatorsTest.cpp", |
| 335 "text/StringViewTest.cpp", | 328 "text/StringViewTest.cpp", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 357 ] | 350 ] |
| 358 | 351 |
| 359 deps = [ | 352 deps = [ |
| 360 ":wtf", | 353 ":wtf", |
| 361 "//base", | 354 "//base", |
| 362 "//base/test:test_support", | 355 "//base/test:test_support", |
| 363 "//testing/gmock", | 356 "//testing/gmock", |
| 364 "//testing/gtest", | 357 "//testing/gtest", |
| 365 ] | 358 ] |
| 366 } | 359 } |
| OLD | NEW |