| 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/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 configs += [ | 219 configs += [ |
| 220 "//build/config:precompiled_headers", | 220 "//build/config:precompiled_headers", |
| 221 "//v8:external_startup_data", | 221 "//v8:external_startup_data", |
| 222 ] | 222 ] |
| 223 | 223 |
| 224 public_deps = [ | 224 public_deps = [ |
| 225 "//content/public/app:both", | 225 "//content/public/app:both", |
| 226 "//content/public/browser", | 226 "//content/public/browser", |
| 227 "//content/public/common", | 227 "//content/public/common", |
| 228 "//ipc", | 228 "//ipc", |
| 229 "//media/mojo/clients", |
| 230 "//media/mojo/interfaces", |
| 229 "//third_party/WebKit/public:blink", | 231 "//third_party/WebKit/public:blink", |
| 230 "//third_party/WebKit/public:test_support", | 232 "//third_party/WebKit/public:test_support", |
| 231 ] | 233 ] |
| 232 deps = [ | 234 deps = [ |
| 233 ":content_test_mojo_bindings", | 235 ":content_test_mojo_bindings", |
| 234 "//base/third_party/dynamic_annotations", | 236 "//base/third_party/dynamic_annotations", |
| 235 "//cc:test_support", | 237 "//cc:test_support", |
| 236 "//cc/blink", | 238 "//cc/blink", |
| 237 "//cc/ipc", | 239 "//cc/ipc", |
| 238 "//cc/ipc:interfaces", | 240 "//cc/ipc:interfaces", |
| (...skipping 1586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1825 if (is_android) { | 1827 if (is_android) { |
| 1826 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1828 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1827 } | 1829 } |
| 1828 } | 1830 } |
| 1829 | 1831 |
| 1830 group("fuzzers") { | 1832 group("fuzzers") { |
| 1831 deps = [ | 1833 deps = [ |
| 1832 "//content/test/fuzzer", | 1834 "//content/test/fuzzer", |
| 1833 ] | 1835 ] |
| 1834 } | 1836 } |
| OLD | NEW |