| 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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 | 299 |
| 300 data_deps = [ | 300 data_deps = [ |
| 301 "//content/shell:pak", | 301 "//content/shell:pak", |
| 302 ] | 302 ] |
| 303 | 303 |
| 304 if (is_android) { | 304 if (is_android) { |
| 305 sources -= [ | 305 sources -= [ |
| 306 "mock_google_streaming_server.cc", | 306 "mock_google_streaming_server.cc", |
| 307 "mock_google_streaming_server.h", | 307 "mock_google_streaming_server.h", |
| 308 ] | 308 ] |
| 309 deps += [ "//mojo/android:libsystem_java" ] |
| 309 } | 310 } |
| 310 | 311 |
| 311 if (enable_plugins) { | 312 if (enable_plugins) { |
| 312 deps += [ | 313 deps += [ |
| 313 "//content/ppapi_plugin", | 314 "//content/ppapi_plugin", |
| 314 "//ppapi/host", | 315 "//ppapi/host", |
| 315 "//ppapi/proxy", | 316 "//ppapi/proxy", |
| 316 "//ppapi/proxy:test_support", | 317 "//ppapi/proxy:test_support", |
| 317 "//ppapi/shared_impl", | 318 "//ppapi/shared_impl", |
| 318 "//ppapi/shared_impl:test_support", | 319 "//ppapi/shared_impl:test_support", |
| (...skipping 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1850 if (is_android) { | 1851 if (is_android) { |
| 1851 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1852 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1852 } | 1853 } |
| 1853 } | 1854 } |
| 1854 | 1855 |
| 1855 group("fuzzers") { | 1856 group("fuzzers") { |
| 1856 deps = [ | 1857 deps = [ |
| 1857 "//content/test/fuzzer", | 1858 "//content/test/fuzzer", |
| 1858 ] | 1859 ] |
| 1859 } | 1860 } |
| OLD | NEW |