| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "DataLog.cpp", | 69 "DataLog.cpp", |
| 70 "DataLog.h", | 70 "DataLog.h", |
| 71 "DateMath.cpp", | 71 "DateMath.cpp", |
| 72 "DateMath.h", | 72 "DateMath.h", |
| 73 "Deque.h", | 73 "Deque.h", |
| 74 "DoublyLinkedList.h", | 74 "DoublyLinkedList.h", |
| 75 "DynamicAnnotations.cpp", | 75 "DynamicAnnotations.cpp", |
| 76 "DynamicAnnotations.h", | 76 "DynamicAnnotations.h", |
| 77 "FilePrintStream.cpp", | 77 "FilePrintStream.cpp", |
| 78 "FilePrintStream.h", | 78 "FilePrintStream.h", |
| 79 "FlatMap.h", |
| 80 "FlatSet.h", |
| 81 "FlatTable.h", |
| 79 "Forward.h", | 82 "Forward.h", |
| 80 "Functional.h", | 83 "Functional.h", |
| 81 "GetPtr.h", | 84 "GetPtr.h", |
| 82 "HashCountedSet.h", | 85 "HashCountedSet.h", |
| 83 "HashFunctions.h", | 86 "HashFunctions.h", |
| 84 "HashIterators.h", | 87 "HashIterators.h", |
| 85 "HashMap.h", | 88 "HashMap.h", |
| 86 "HashSet.h", | 89 "HashSet.h", |
| 87 "HashTable.cpp", | 90 "HashTable.cpp", |
| 88 "HashTable.h", | 91 "HashTable.h", |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 } | 308 } |
| 306 | 309 |
| 307 test("wtf_unittests") { | 310 test("wtf_unittests") { |
| 308 visibility = [] # Allow re-assignment of list. | 311 visibility = [] # Allow re-assignment of list. |
| 309 visibility = [ "*" ] | 312 visibility = [ "*" ] |
| 310 | 313 |
| 311 sources = [ | 314 sources = [ |
| 312 "ASCIICTypeTest.cpp", | 315 "ASCIICTypeTest.cpp", |
| 313 "AssertionsTest.cpp", | 316 "AssertionsTest.cpp", |
| 314 "DequeTest.cpp", | 317 "DequeTest.cpp", |
| 318 "FlatMapTest.cpp", |
| 319 "FlatSetTest.cpp", |
| 315 "FunctionalTest.cpp", | 320 "FunctionalTest.cpp", |
| 316 "HashMapTest.cpp", | 321 "HashMapTest.cpp", |
| 317 "HashSetTest.cpp", | 322 "HashSetTest.cpp", |
| 318 "ListHashSetTest.cpp", | 323 "ListHashSetTest.cpp", |
| 319 "MakeCancellableTest.cpp", | 324 "MakeCancellableTest.cpp", |
| 320 "MathExtrasTest.cpp", | 325 "MathExtrasTest.cpp", |
| 321 "OptionalTest.cpp", | 326 "OptionalTest.cpp", |
| 322 "PassRefPtrTest.cpp", | 327 "PassRefPtrTest.cpp", |
| 323 "RefPtrTest.cpp", | 328 "RefPtrTest.cpp", |
| 324 "SaturatedArithmeticTest.cpp", | 329 "SaturatedArithmeticTest.cpp", |
| 330 "SetPerfTest.cpp", |
| 325 "StringExtrasTest.cpp", | 331 "StringExtrasTest.cpp", |
| 326 "StringHasherTest.cpp", | 332 "StringHasherTest.cpp", |
| 327 "TreeNodeTest.cpp", | 333 "TreeNodeTest.cpp", |
| 328 "TypeTraitsTest.cpp", | 334 "TypeTraitsTest.cpp", |
| 329 "VectorTest.cpp", | 335 "VectorTest.cpp", |
| 330 "allocator/PartitionAllocTest.cpp", | 336 "allocator/PartitionAllocTest.cpp", |
| 331 "dtoa_test.cpp", | 337 "dtoa_test.cpp", |
| 332 "testing/RunAllTests.cpp", | 338 "testing/RunAllTests.cpp", |
| 333 "text/AtomicStringTest.cpp", | 339 "text/AtomicStringTest.cpp", |
| 334 "text/CStringTest.cpp", | 340 "text/CStringTest.cpp", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 356 configs += [ "//third_party/WebKit/Source:config" ] | 362 configs += [ "//third_party/WebKit/Source:config" ] |
| 357 | 363 |
| 358 deps = [ | 364 deps = [ |
| 359 ":wtf", | 365 ":wtf", |
| 360 "//base", | 366 "//base", |
| 361 "//base/test:test_support", | 367 "//base/test:test_support", |
| 362 "//testing/gmock", | 368 "//testing/gmock", |
| 363 "//testing/gtest", | 369 "//testing/gtest", |
| 364 ] | 370 ] |
| 365 } | 371 } |
| OLD | NEW |