Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: third_party/WebKit/Source/wtf/BUILD.gn

Issue 2518253002: Move Partition Allocator into Chromium base. (Closed)
Patch Set: Move OOM_CRASH into its own, more specific header. Fixes Windows build. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 "TreeNode.h", 127 "TreeNode.h",
128 "TypeTraits.h", 128 "TypeTraits.h",
129 "Vector.h", 129 "Vector.h",
130 "VectorTraits.h", 130 "VectorTraits.h",
131 "WTF.cpp", 131 "WTF.cpp",
132 "WTF.h", 132 "WTF.h",
133 "WTFExport.h", 133 "WTFExport.h",
134 "WTFThreadData.cpp", 134 "WTFThreadData.cpp",
135 "WTFThreadData.h", 135 "WTFThreadData.h",
136 "WeakPtr.h", 136 "WeakPtr.h",
137 "allocator/AddressSpaceRandomization.cpp",
138 "allocator/AddressSpaceRandomization.h",
139 "allocator/PageAllocator.cpp",
140 "allocator/PageAllocator.h",
141 "allocator/PartitionAlloc.cpp",
142 "allocator/PartitionAlloc.h",
143 "allocator/PartitionAllocator.cpp", 137 "allocator/PartitionAllocator.cpp",
144 "allocator/PartitionAllocator.h", 138 "allocator/PartitionAllocator.h",
145 "allocator/Partitions.cpp", 139 "allocator/Partitions.cpp",
146 "allocator/Partitions.h", 140 "allocator/Partitions.h",
147 "build_config.h", 141 "build_config.h",
148 "debug/Alias.h", 142 "debug/Alias.h",
149 "debug/CrashLogging.h", 143 "debug/CrashLogging.h",
150 "dtoa.cpp", 144 "dtoa.cpp",
151 "dtoa.h", 145 "dtoa.h",
152 "dtoa/bignum-dtoa.cc", 146 "dtoa/bignum-dtoa.cc",
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 "MathExtrasTest.cpp", 311 "MathExtrasTest.cpp",
318 "OptionalTest.cpp", 312 "OptionalTest.cpp",
319 "PassRefPtrTest.cpp", 313 "PassRefPtrTest.cpp",
320 "RefPtrTest.cpp", 314 "RefPtrTest.cpp",
321 "StringExtrasTest.cpp", 315 "StringExtrasTest.cpp",
322 "StringHasherTest.cpp", 316 "StringHasherTest.cpp",
323 "TimeTest.cpp", 317 "TimeTest.cpp",
324 "TreeNodeTest.cpp", 318 "TreeNodeTest.cpp",
325 "TypeTraitsTest.cpp", 319 "TypeTraitsTest.cpp",
326 "VectorTest.cpp", 320 "VectorTest.cpp",
327 "allocator/PartitionAllocTest.cpp",
328 "dtoa_test.cpp", 321 "dtoa_test.cpp",
329 "testing/RunAllTests.cpp", 322 "testing/RunAllTests.cpp",
330 "text/AtomicStringTest.cpp", 323 "text/AtomicStringTest.cpp",
331 "text/CStringTest.cpp", 324 "text/CStringTest.cpp",
332 "text/IntegerToStringConversionTest.cpp", 325 "text/IntegerToStringConversionTest.cpp",
333 "text/StringBufferTest.cpp", 326 "text/StringBufferTest.cpp",
334 "text/StringBuilderTest.cpp", 327 "text/StringBuilderTest.cpp",
335 "text/StringImplTest.cpp", 328 "text/StringImplTest.cpp",
336 "text/StringOperatorsTest.cpp", 329 "text/StringOperatorsTest.cpp",
337 "text/StringToNumberTest.cpp", 330 "text/StringToNumberTest.cpp",
(...skipping 22 matching lines...) Expand all
360 ] 353 ]
361 354
362 deps = [ 355 deps = [
363 ":wtf", 356 ":wtf",
364 "//base", 357 "//base",
365 "//base/test:test_support", 358 "//base/test:test_support",
366 "//testing/gmock", 359 "//testing/gmock",
367 "//testing/gtest", 360 "//testing/gtest",
368 ] 361 ]
369 } 362 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698