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