| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 # The below is a temporary setup during the WTF migration project: | 5 # The below is a temporary setup during the WTF migration project: |
| 6 # https://groups.google.com/a/chromium.org/d/msg/blink-dev/tLdAZCTlcAA/bYXVT8gYC
AAJ | 6 # https://groups.google.com/a/chromium.org/d/msg/blink-dev/tLdAZCTlcAA/bYXVT8gYC
AAJ |
| 7 # | 7 # |
| 8 # We are moving wtf/ files to platform/wtf/ incrementally, thus, conceptually, | 8 # We are moving wtf/ files to platform/wtf/ incrementally, thus, conceptually, |
| 9 # the "wtf" target in wtf/BUILD.gn is being split into two, in a way that | 9 # the "wtf" target in wtf/BUILD.gn is being split into two, in a way that |
| 10 # only wtf/ can refer the contents in platform/wtf/. | 10 # only wtf/ can refer the contents in platform/wtf/. |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 "ASCIICTypeTest.cpp", | 341 "ASCIICTypeTest.cpp", |
| 342 "AssertionsTest.cpp", | 342 "AssertionsTest.cpp", |
| 343 "DequeTest.cpp", | 343 "DequeTest.cpp", |
| 344 "FunctionalTest.cpp", | 344 "FunctionalTest.cpp", |
| 345 "HashMapTest.cpp", | 345 "HashMapTest.cpp", |
| 346 "HashSetTest.cpp", | 346 "HashSetTest.cpp", |
| 347 "ListHashSetTest.cpp", | 347 "ListHashSetTest.cpp", |
| 348 "MathExtrasTest.cpp", | 348 "MathExtrasTest.cpp", |
| 349 "OptionalTest.cpp", | 349 "OptionalTest.cpp", |
| 350 "PassRefPtrTest.cpp", | 350 "PassRefPtrTest.cpp", |
| 351 "PtrUtilTest.cpp", |
| 351 "RefPtrTest.cpp", | 352 "RefPtrTest.cpp", |
| 352 "StringExtrasTest.cpp", | 353 "StringExtrasTest.cpp", |
| 353 "StringHasherTest.cpp", | 354 "StringHasherTest.cpp", |
| 354 "TimeTest.cpp", | 355 "TimeTest.cpp", |
| 355 "TreeNodeTest.cpp", | 356 "TreeNodeTest.cpp", |
| 356 "TypeTraitsTest.cpp", | 357 "TypeTraitsTest.cpp", |
| 357 "VectorTest.cpp", | 358 "VectorTest.cpp", |
| 358 "dtoa_test.cpp", | 359 "dtoa_test.cpp", |
| 359 "testing/RunAllTests.cpp", | 360 "testing/RunAllTests.cpp", |
| 360 "text/AtomicStringTest.cpp", | 361 "text/AtomicStringTest.cpp", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 390 ] | 391 ] |
| 391 | 392 |
| 392 deps = [ | 393 deps = [ |
| 393 ":platform_wtf", | 394 ":platform_wtf", |
| 394 "//base", | 395 "//base", |
| 395 "//base/test:test_support", | 396 "//base/test:test_support", |
| 396 "//testing/gmock", | 397 "//testing/gmock", |
| 397 "//testing/gtest", | 398 "//testing/gtest", |
| 398 ] | 399 ] |
| 399 } | 400 } |
| OLD | NEW |