| 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", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 configs += [ "//third_party/WebKit/Source:config" ] | 361 configs += [ "//third_party/WebKit/Source:config" ] |
| 357 | 362 |
| 358 deps = [ | 363 deps = [ |
| 359 ":wtf", | 364 ":wtf", |
| 360 "//base", | 365 "//base", |
| 361 "//base/test:test_support", | 366 "//base/test:test_support", |
| 362 "//testing/gmock", | 367 "//testing/gmock", |
| 363 "//testing/gtest", | 368 "//testing/gtest", |
| 364 ] | 369 ] |
| 365 } | 370 } |
| OLD | NEW |