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

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

Issue 2231953003: Added ASSERT_SIZE macro for checking size of size-sensitive classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: g cl try Created 4 years, 3 months 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "NotFound.h", 103 "NotFound.h",
104 "Optional.h", 104 "Optional.h",
105 "PassRefPtr.h", 105 "PassRefPtr.h",
106 "PrintStream.cpp", 106 "PrintStream.cpp",
107 "PrintStream.h", 107 "PrintStream.h",
108 "PtrUtil.h", 108 "PtrUtil.h",
109 "RefCounted.h", 109 "RefCounted.h",
110 "RefPtr.h", 110 "RefPtr.h",
111 "RetainPtr.h", 111 "RetainPtr.h",
112 "SaturatedArithmetic.h", 112 "SaturatedArithmetic.h",
113 "SizeAssertions.h",
113 "SizeLimits.cpp", 114 "SizeLimits.cpp",
114 "SpinLock.cpp", 115 "SpinLock.cpp",
115 "SpinLock.h", 116 "SpinLock.h",
116 "StaticConstructors.h", 117 "StaticConstructors.h",
117 "StdLibExtras.h", 118 "StdLibExtras.h",
118 "StringExtras.h", 119 "StringExtras.h",
119 "StringHasher.h", 120 "StringHasher.h",
120 "ThreadRestrictionVerifier.h", 121 "ThreadRestrictionVerifier.h",
121 "ThreadSafeRefCounted.h", 122 "ThreadSafeRefCounted.h",
122 "ThreadSpecific.h", 123 "ThreadSpecific.h",
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 configs += [ "//third_party/WebKit/Source:config" ] 355 configs += [ "//third_party/WebKit/Source:config" ]
355 356
356 deps = [ 357 deps = [
357 ":wtf", 358 ":wtf",
358 "//base", 359 "//base",
359 "//base/test:test_support", 360 "//base/test:test_support",
360 "//testing/gmock", 361 "//testing/gmock",
361 "//testing/gtest", 362 "//testing/gtest",
362 ] 363 ]
363 } 364 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698