| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 222 |
| 223 configs += [ | 223 configs += [ |
| 224 "//build/config:precompiled_headers", | 224 "//build/config:precompiled_headers", |
| 225 "//v8:external_startup_data", | 225 "//v8:external_startup_data", |
| 226 ] | 226 ] |
| 227 | 227 |
| 228 public_deps = [ | 228 public_deps = [ |
| 229 "//content/public/app:both", | 229 "//content/public/app:both", |
| 230 "//content/public/browser", | 230 "//content/public/browser", |
| 231 "//content/public/common", | 231 "//content/public/common", |
| 232 "//ipc", |
| 232 "//third_party/WebKit/public:blink", | 233 "//third_party/WebKit/public:blink", |
| 233 "//third_party/WebKit/public:test_support", | 234 "//third_party/WebKit/public:test_support", |
| 234 ] | 235 ] |
| 235 deps = [ | 236 deps = [ |
| 236 ":content_test_mojo_bindings", | 237 ":content_test_mojo_bindings", |
| 237 "//base/third_party/dynamic_annotations", | 238 "//base/third_party/dynamic_annotations", |
| 238 "//cc:test_support", | 239 "//cc:test_support", |
| 239 "//cc/blink", | 240 "//cc/blink", |
| 240 "//cc/ipc", | 241 "//cc/ipc", |
| 241 "//cc/surfaces", | 242 "//cc/surfaces", |
| (...skipping 1616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1858 if (is_android) { | 1859 if (is_android) { |
| 1859 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1860 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1860 } | 1861 } |
| 1861 } | 1862 } |
| 1862 | 1863 |
| 1863 group("fuzzers") { | 1864 group("fuzzers") { |
| 1864 deps = [ | 1865 deps = [ |
| 1865 "//content/test/fuzzer", | 1866 "//content/test/fuzzer", |
| 1866 ] | 1867 ] |
| 1867 } | 1868 } |
| OLD | NEW |