| 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 testonly = true | 212 testonly = true |
| 213 sources = rebase_path( | 213 sources = rebase_path( |
| 214 content_tests_gypi_values.layouttest_support_content_sources, | 214 content_tests_gypi_values.layouttest_support_content_sources, |
| 215 ".", | 215 ".", |
| 216 "//content") | 216 "//content") |
| 217 | 217 |
| 218 deps = [ | 218 deps = [ |
| 219 ":test_support", | 219 ":test_support", |
| 220 "//cc", | 220 "//cc", |
| 221 "//cc/blink", | 221 "//cc/blink", |
| 222 "//components/test_runner:test_runner", |
| 222 "//content/public/common", | 223 "//content/public/common", |
| 223 "//skia", | 224 "//skia", |
| 224 "//v8", | 225 "//v8", |
| 225 "//ui/accessibility:ax_gen", | 226 "//ui/accessibility:ax_gen", |
| 226 ] | 227 ] |
| 227 | 228 |
| 228 if (is_android) { | 229 if (is_android) { |
| 229 deps += [ ":jni" ] | 230 deps += [ ":jni" ] |
| 230 } | 231 } |
| 231 } | 232 } |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 "//gpu/blink", | 686 "//gpu/blink", |
| 686 "//testing/gtest", | 687 "//testing/gtest", |
| 687 "//third_party/WebKit/public:blink", | 688 "//third_party/WebKit/public:blink", |
| 688 "//ui/base", | 689 "//ui/base", |
| 689 "//ui/gfx", | 690 "//ui/gfx", |
| 690 "//ui/gfx/geometry", | 691 "//ui/gfx/geometry", |
| 691 "//ui/gl", | 692 "//ui/gl", |
| 692 ] | 693 ] |
| 693 } | 694 } |
| 694 } | 695 } |
| OLD | NEW |