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

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

Issue 2499783002: Move SaturatedArithmetic from Blink to base (Closed)
Patch Set: Created 4 years, 1 month 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "Noncopyable.h", 100 "Noncopyable.h",
101 "NotFound.h", 101 "NotFound.h",
102 "Optional.h", 102 "Optional.h",
103 "PassRefPtr.h", 103 "PassRefPtr.h",
104 "PrintStream.cpp", 104 "PrintStream.cpp",
105 "PrintStream.h", 105 "PrintStream.h",
106 "PtrUtil.h", 106 "PtrUtil.h",
107 "RefCounted.h", 107 "RefCounted.h",
108 "RefPtr.h", 108 "RefPtr.h",
109 "RetainPtr.h", 109 "RetainPtr.h",
110 "SaturatedArithmetic.h",
111 "SizeAssertions.h", 110 "SizeAssertions.h",
112 "SizeLimits.cpp", 111 "SizeLimits.cpp",
113 "SpinLock.cpp", 112 "SpinLock.cpp",
114 "SpinLock.h", 113 "SpinLock.h",
115 "StaticConstructors.h", 114 "StaticConstructors.h",
116 "StdLibExtras.h", 115 "StdLibExtras.h",
117 "StringExtras.h", 116 "StringExtras.h",
118 "StringHasher.h", 117 "StringHasher.h",
119 "ThreadRestrictionVerifier.h", 118 "ThreadRestrictionVerifier.h",
120 "ThreadSafeRefCounted.h", 119 "ThreadSafeRefCounted.h",
(...skipping 16 matching lines...) Expand all
137 "allocator/AddressSpaceRandomization.cpp", 136 "allocator/AddressSpaceRandomization.cpp",
138 "allocator/AddressSpaceRandomization.h", 137 "allocator/AddressSpaceRandomization.h",
139 "allocator/PageAllocator.cpp", 138 "allocator/PageAllocator.cpp",
140 "allocator/PageAllocator.h", 139 "allocator/PageAllocator.h",
141 "allocator/PartitionAlloc.cpp", 140 "allocator/PartitionAlloc.cpp",
142 "allocator/PartitionAlloc.h", 141 "allocator/PartitionAlloc.h",
143 "allocator/PartitionAllocator.cpp", 142 "allocator/PartitionAllocator.cpp",
144 "allocator/PartitionAllocator.h", 143 "allocator/PartitionAllocator.h",
145 "allocator/Partitions.cpp", 144 "allocator/Partitions.cpp",
146 "allocator/Partitions.h", 145 "allocator/Partitions.h",
147 "asm/SaturatedArithmeticARM.h",
148 "build_config.h", 146 "build_config.h",
149 "debug/Alias.h", 147 "debug/Alias.h",
150 "debug/CrashLogging.h", 148 "debug/CrashLogging.h",
151 "dtoa.cpp", 149 "dtoa.cpp",
152 "dtoa.h", 150 "dtoa.h",
153 "dtoa/bignum-dtoa.cc", 151 "dtoa/bignum-dtoa.cc",
154 "dtoa/bignum-dtoa.h", 152 "dtoa/bignum-dtoa.h",
155 "dtoa/bignum.cc", 153 "dtoa/bignum.cc",
156 "dtoa/bignum.h", 154 "dtoa/bignum.h",
157 "dtoa/cached-powers.cc", 155 "dtoa/cached-powers.cc",
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 "AssertionsTest.cpp", 309 "AssertionsTest.cpp",
312 "DequeTest.cpp", 310 "DequeTest.cpp",
313 "FunctionalTest.cpp", 311 "FunctionalTest.cpp",
314 "HashMapTest.cpp", 312 "HashMapTest.cpp",
315 "HashSetTest.cpp", 313 "HashSetTest.cpp",
316 "ListHashSetTest.cpp", 314 "ListHashSetTest.cpp",
317 "MathExtrasTest.cpp", 315 "MathExtrasTest.cpp",
318 "OptionalTest.cpp", 316 "OptionalTest.cpp",
319 "PassRefPtrTest.cpp", 317 "PassRefPtrTest.cpp",
320 "RefPtrTest.cpp", 318 "RefPtrTest.cpp",
321 "SaturatedArithmeticTest.cpp",
322 "StringExtrasTest.cpp", 319 "StringExtrasTest.cpp",
323 "StringHasherTest.cpp", 320 "StringHasherTest.cpp",
324 "TreeNodeTest.cpp", 321 "TreeNodeTest.cpp",
325 "TypeTraitsTest.cpp", 322 "TypeTraitsTest.cpp",
326 "VectorTest.cpp", 323 "VectorTest.cpp",
327 "allocator/PartitionAllocTest.cpp", 324 "allocator/PartitionAllocTest.cpp",
328 "dtoa_test.cpp", 325 "dtoa_test.cpp",
329 "testing/RunAllTests.cpp", 326 "testing/RunAllTests.cpp",
330 "text/AtomicStringTest.cpp", 327 "text/AtomicStringTest.cpp",
331 "text/CStringTest.cpp", 328 "text/CStringTest.cpp",
(...skipping 24 matching lines...) Expand all
356 configs += [ "//third_party/WebKit/Source:config" ] 353 configs += [ "//third_party/WebKit/Source:config" ]
357 354
358 deps = [ 355 deps = [
359 ":wtf", 356 ":wtf",
360 "//base", 357 "//base",
361 "//base/test:test_support", 358 "//base/test:test_support",
362 "//testing/gmock", 359 "//testing/gmock",
363 "//testing/gtest", 360 "//testing/gtest",
364 ] 361 ]
365 } 362 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698