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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 110 "SaturatedArithmetic.h", |
111 "SizeAssertions.h", | 111 "SizeAssertions.h", |
112 "SizeLimits.cpp", | 112 "SizeLimits.cpp", |
113 "SpinLock.h", | 113 "SpinLock.h", |
| 114 "StackUtil.cpp", |
| 115 "StackUtil.h", |
114 "StaticConstructors.h", | 116 "StaticConstructors.h", |
115 "StdLibExtras.h", | 117 "StdLibExtras.h", |
116 "StringExtras.h", | 118 "StringExtras.h", |
117 "StringHasher.h", | 119 "StringHasher.h", |
118 "ThreadRestrictionVerifier.h", | 120 "ThreadRestrictionVerifier.h", |
119 "ThreadSafeRefCounted.h", | 121 "ThreadSafeRefCounted.h", |
120 "ThreadSpecific.h", | 122 "ThreadSpecific.h", |
121 "ThreadSpecificWin.cpp", | 123 "ThreadSpecificWin.cpp", |
122 "Threading.h", | 124 "Threading.h", |
123 "ThreadingPrimitives.h", | 125 "ThreadingPrimitives.h", |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 ] | 355 ] |
354 | 356 |
355 deps = [ | 357 deps = [ |
356 ":wtf", | 358 ":wtf", |
357 "//base", | 359 "//base", |
358 "//base/test:test_support", | 360 "//base/test:test_support", |
359 "//testing/gmock", | 361 "//testing/gmock", |
360 "//testing/gtest", | 362 "//testing/gtest", |
361 ] | 363 ] |
362 } | 364 } |
OLD | NEW |