| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 "StringExtras.h", | 117 "StringExtras.h", |
| 118 "StringHasher.h", | 118 "StringHasher.h", |
| 119 "ThreadRestrictionVerifier.h", | 119 "ThreadRestrictionVerifier.h", |
| 120 "ThreadSafeRefCounted.h", | 120 "ThreadSafeRefCounted.h", |
| 121 "ThreadSpecific.h", | 121 "ThreadSpecific.h", |
| 122 "ThreadSpecificWin.cpp", | 122 "ThreadSpecificWin.cpp", |
| 123 "Threading.h", | 123 "Threading.h", |
| 124 "ThreadingPrimitives.h", | 124 "ThreadingPrimitives.h", |
| 125 "ThreadingPthreads.cpp", | 125 "ThreadingPthreads.cpp", |
| 126 "ThreadingWin.cpp", | 126 "ThreadingWin.cpp", |
| 127 "Time.h", |
| 127 "TreeNode.h", | 128 "TreeNode.h", |
| 128 "TypeTraits.h", | 129 "TypeTraits.h", |
| 129 "Vector.h", | 130 "Vector.h", |
| 130 "VectorTraits.h", | 131 "VectorTraits.h", |
| 131 "WTF.cpp", | 132 "WTF.cpp", |
| 132 "WTF.h", | 133 "WTF.h", |
| 133 "WTFExport.h", | 134 "WTFExport.h", |
| 134 "WTFThreadData.cpp", | 135 "WTFThreadData.cpp", |
| 135 "WTFThreadData.h", | 136 "WTFThreadData.h", |
| 136 "WeakPtr.h", | 137 "WeakPtr.h", |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 "FunctionalTest.cpp", | 314 "FunctionalTest.cpp", |
| 314 "HashMapTest.cpp", | 315 "HashMapTest.cpp", |
| 315 "HashSetTest.cpp", | 316 "HashSetTest.cpp", |
| 316 "ListHashSetTest.cpp", | 317 "ListHashSetTest.cpp", |
| 317 "MathExtrasTest.cpp", | 318 "MathExtrasTest.cpp", |
| 318 "OptionalTest.cpp", | 319 "OptionalTest.cpp", |
| 319 "PassRefPtrTest.cpp", | 320 "PassRefPtrTest.cpp", |
| 320 "RefPtrTest.cpp", | 321 "RefPtrTest.cpp", |
| 321 "StringExtrasTest.cpp", | 322 "StringExtrasTest.cpp", |
| 322 "StringHasherTest.cpp", | 323 "StringHasherTest.cpp", |
| 324 "TimeTest.cpp", |
| 323 "TreeNodeTest.cpp", | 325 "TreeNodeTest.cpp", |
| 324 "TypeTraitsTest.cpp", | 326 "TypeTraitsTest.cpp", |
| 325 "VectorTest.cpp", | 327 "VectorTest.cpp", |
| 326 "allocator/PartitionAllocTest.cpp", | 328 "allocator/PartitionAllocTest.cpp", |
| 327 "dtoa_test.cpp", | 329 "dtoa_test.cpp", |
| 328 "testing/RunAllTests.cpp", | 330 "testing/RunAllTests.cpp", |
| 329 "text/AtomicStringTest.cpp", | 331 "text/AtomicStringTest.cpp", |
| 330 "text/CStringTest.cpp", | 332 "text/CStringTest.cpp", |
| 331 "text/IntegerToStringConversionTest.cpp", | 333 "text/IntegerToStringConversionTest.cpp", |
| 332 "text/StringBufferTest.cpp", | 334 "text/StringBufferTest.cpp", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 358 ] | 360 ] |
| 359 | 361 |
| 360 deps = [ | 362 deps = [ |
| 361 ":wtf", | 363 ":wtf", |
| 362 "//base", | 364 "//base", |
| 363 "//base/test:test_support", | 365 "//base/test:test_support", |
| 364 "//testing/gmock", | 366 "//testing/gmock", |
| 365 "//testing/gtest", | 367 "//testing/gtest", |
| 366 ] | 368 ] |
| 367 } | 369 } |
| OLD | NEW |