| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "TreeNode.h", | 101 "TreeNode.h", |
| 102 "TypeTraits.h", | 102 "TypeTraits.h", |
| 103 "Vector.h", | 103 "Vector.h", |
| 104 "VectorTraits.h", | 104 "VectorTraits.h", |
| 105 "WTF.cpp", | 105 "WTF.cpp", |
| 106 "WTF.h", | 106 "WTF.h", |
| 107 "WTFExport.h", | 107 "WTFExport.h", |
| 108 "WTFThreadData.cpp", | 108 "WTFThreadData.cpp", |
| 109 "WTFThreadData.h", | 109 "WTFThreadData.h", |
| 110 "WeakPtr.h", | 110 "WeakPtr.h", |
| 111 "allocator/PartitionAllocator.cpp", | |
| 112 "allocator/PartitionAllocator.h", | 111 "allocator/PartitionAllocator.h", |
| 113 "allocator/Partitions.cpp", | |
| 114 "allocator/Partitions.h", | 112 "allocator/Partitions.h", |
| 115 "build_config.h", | 113 "build_config.h", |
| 116 "debug/Alias.h", | 114 "debug/Alias.h", |
| 117 "debug/CrashLogging.h", | 115 "debug/CrashLogging.h", |
| 118 "dtoa.cpp", | 116 "dtoa.cpp", |
| 119 "dtoa.h", | 117 "dtoa.h", |
| 120 "dtoa/bignum-dtoa.cc", | 118 "dtoa/bignum-dtoa.cc", |
| 121 "dtoa/bignum-dtoa.h", | 119 "dtoa/bignum-dtoa.h", |
| 122 "dtoa/bignum.cc", | 120 "dtoa/bignum.cc", |
| 123 "dtoa/bignum.h", | 121 "dtoa/bignum.h", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 ] | 326 ] |
| 329 | 327 |
| 330 deps = [ | 328 deps = [ |
| 331 ":wtf", | 329 ":wtf", |
| 332 "//base", | 330 "//base", |
| 333 "//base/test:test_support", | 331 "//base/test:test_support", |
| 334 "//testing/gmock", | 332 "//testing/gmock", |
| 335 "//testing/gtest", | 333 "//testing/gtest", |
| 336 ] | 334 ] |
| 337 } | 335 } |
| OLD | NEW |