| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 "TreeNode.h", | 126 "TreeNode.h", |
| 127 "TypeTraits.h", | 127 "TypeTraits.h", |
| 128 "Vector.h", | 128 "Vector.h", |
| 129 "VectorTraits.h", | 129 "VectorTraits.h", |
| 130 "WTF.cpp", | 130 "WTF.cpp", |
| 131 "WTF.h", | 131 "WTF.h", |
| 132 "WTFExport.h", | 132 "WTFExport.h", |
| 133 "WTFThreadData.cpp", | 133 "WTFThreadData.cpp", |
| 134 "WTFThreadData.h", | 134 "WTFThreadData.h", |
| 135 "WeakPtr.h", | 135 "WeakPtr.h", |
| 136 "allocator/AddressSpaceRandomization.cpp", | |
| 137 "allocator/AddressSpaceRandomization.h", | |
| 138 "allocator/PageAllocator.cpp", | |
| 139 "allocator/PageAllocator.h", | |
| 140 "allocator/PartitionAlloc.cpp", | |
| 141 "allocator/PartitionAlloc.h", | |
| 142 "allocator/PartitionAllocator.cpp", | |
| 143 "allocator/PartitionAllocator.h", | |
| 144 "allocator/Partitions.cpp", | 136 "allocator/Partitions.cpp", |
| 145 "allocator/Partitions.h", | 137 "allocator/Partitions.h", |
| 146 "build_config.h", | 138 "build_config.h", |
| 147 "debug/Alias.h", | 139 "debug/Alias.h", |
| 148 "debug/CrashLogging.h", | 140 "debug/CrashLogging.h", |
| 149 "dtoa.cpp", | 141 "dtoa.cpp", |
| 150 "dtoa.h", | 142 "dtoa.h", |
| 151 "dtoa/bignum-dtoa.cc", | 143 "dtoa/bignum-dtoa.cc", |
| 152 "dtoa/bignum-dtoa.h", | 144 "dtoa/bignum-dtoa.h", |
| 153 "dtoa/bignum.cc", | 145 "dtoa/bignum.cc", |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 ] | 349 ] |
| 358 | 350 |
| 359 deps = [ | 351 deps = [ |
| 360 ":wtf", | 352 ":wtf", |
| 361 "//base", | 353 "//base", |
| 362 "//base/test:test_support", | 354 "//base/test:test_support", |
| 363 "//testing/gmock", | 355 "//testing/gmock", |
| 364 "//testing/gtest", | 356 "//testing/gtest", |
| 365 ] | 357 ] |
| 366 } | 358 } |
| OLD | NEW |