| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "InstanceCounter.cpp", | 64 "InstanceCounter.cpp", |
| 65 "InstanceCounter.h", | 65 "InstanceCounter.h", |
| 66 "LeakAnnotations.h", | 66 "LeakAnnotations.h", |
| 67 "LinkedStack.h", | 67 "LinkedStack.h", |
| 68 "ListHashSet.h", | 68 "ListHashSet.h", |
| 69 "Locker.h", | 69 "Locker.h", |
| 70 "MathExtras.h", | 70 "MathExtras.h", |
| 71 "NonCopyingSort.h", | 71 "NonCopyingSort.h", |
| 72 "Noncopyable.h", | 72 "Noncopyable.h", |
| 73 "NotFound.h", | 73 "NotFound.h", |
| 74 "NotNull.h", |
| 74 "Optional.h", | 75 "Optional.h", |
| 75 "PassRefPtr.h", | 76 "PassRefPtr.h", |
| 76 "PrintStream.cpp", | 77 "PrintStream.cpp", |
| 77 "PrintStream.h", | 78 "PrintStream.h", |
| 78 "PtrUtil.h", | 79 "PtrUtil.h", |
| 79 "RefCounted.h", | 80 "RefCounted.h", |
| 80 "RefPtr.h", | 81 "RefPtr.h", |
| 81 "RetainPtr.h", | 82 "RetainPtr.h", |
| 82 "SaturatedArithmetic.h", | 83 "SaturatedArithmetic.h", |
| 83 "SizeAssertions.h", | 84 "SizeAssertions.h", |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 ] | 329 ] |
| 329 | 330 |
| 330 deps = [ | 331 deps = [ |
| 331 ":wtf", | 332 ":wtf", |
| 332 "//base", | 333 "//base", |
| 333 "//base/test:test_support", | 334 "//base/test:test_support", |
| 334 "//testing/gmock", | 335 "//testing/gmock", |
| 335 "//testing/gtest", | 336 "//testing/gtest", |
| 336 ] | 337 ] |
| 337 } | 338 } |
| OLD | NEW |