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

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

Issue 2518253002: Move Partition Allocator into Chromium base. (Closed)
Patch Set: 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", 137 "allocator/PartitionAlloc.h",
143 "allocator/PartitionAllocator.cpp", 138 "asm/SaturatedArithmeticARM.h",
Primiano Tucci (use gerrit) 2016/11/22 14:28:33 uh? either you forgot to git-add this file or this
palmer 2016/11/24 01:05:56 Don't know how that happened. Fixed.
144 "allocator/PartitionAllocator.h",
145 "allocator/Partitions.cpp",
146 "allocator/Partitions.h",
147 "build_config.h", 139 "build_config.h",
148 "debug/Alias.h", 140 "debug/Alias.h",
149 "debug/CrashLogging.h", 141 "debug/CrashLogging.h",
150 "dtoa.cpp", 142 "dtoa.cpp",
151 "dtoa.h", 143 "dtoa.h",
152 "dtoa/bignum-dtoa.cc", 144 "dtoa/bignum-dtoa.cc",
153 "dtoa/bignum-dtoa.h", 145 "dtoa/bignum-dtoa.h",
154 "dtoa/bignum.cc", 146 "dtoa/bignum.cc",
155 "dtoa/bignum.h", 147 "dtoa/bignum.h",
156 "dtoa/cached-powers.cc", 148 "dtoa/cached-powers.cc",
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 configs += [ "//third_party/WebKit/Source:config" ] 346 configs += [ "//third_party/WebKit/Source:config" ]
355 347
356 deps = [ 348 deps = [
357 ":wtf", 349 ":wtf",
358 "//base", 350 "//base",
359 "//base/test:test_support", 351 "//base/test:test_support",
360 "//testing/gmock", 352 "//testing/gmock",
361 "//testing/gtest", 353 "//testing/gtest",
362 ] 354 ]
363 } 355 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698