| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 "//ui/gfx:test_support", | 257 "//ui/gfx:test_support", |
| 258 "//ui/gl", | 258 "//ui/gl", |
| 259 "//ui/gl:test_support", | 259 "//ui/gl:test_support", |
| 260 "//ui/resources", | 260 "//ui/resources", |
| 261 "//ui/surface", | 261 "//ui/surface", |
| 262 "//url", | 262 "//url", |
| 263 "//url/mojo:url_mojom_gurl", | 263 "//url/mojo:url_mojom_gurl", |
| 264 "//v8", | 264 "//v8", |
| 265 ] | 265 ] |
| 266 | 266 |
| 267 data_deps = [ |
| 268 "//content/shell:pak", |
| 269 ] |
| 270 |
| 267 if (is_android) { | 271 if (is_android) { |
| 268 sources -= [ | 272 sources -= [ |
| 269 "mock_google_streaming_server.cc", | 273 "mock_google_streaming_server.cc", |
| 270 "mock_google_streaming_server.h", | 274 "mock_google_streaming_server.h", |
| 271 ] | 275 ] |
| 272 } | 276 } |
| 273 | 277 |
| 274 if (enable_plugins) { | 278 if (enable_plugins) { |
| 275 deps += [ | 279 deps += [ |
| 276 "//content/ppapi_plugin", | 280 "//content/ppapi_plugin", |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 "//ui/gl", | 715 "//ui/gl", |
| 712 "//ui/gl:test_support", | 716 "//ui/gl:test_support", |
| 713 "//ui/resources", | 717 "//ui/resources", |
| 714 "//ui/shell_dialogs", | 718 "//ui/shell_dialogs", |
| 715 "//ui/snapshot", | 719 "//ui/snapshot", |
| 716 ] | 720 ] |
| 717 | 721 |
| 718 data = [] | 722 data = [] |
| 719 | 723 |
| 720 data_deps = [ | 724 data_deps = [ |
| 725 "//content/shell:pak", |
| 721 "//third_party/mesa:osmesa", | 726 "//third_party/mesa:osmesa", |
| 722 ] | 727 ] |
| 723 | 728 |
| 724 if (enable_plugins) { | 729 if (enable_plugins) { |
| 725 deps += [ | 730 deps += [ |
| 726 "//ppapi/host", | 731 "//ppapi/host", |
| 727 "//ppapi/proxy", | 732 "//ppapi/proxy", |
| 728 "//ppapi/proxy:ipc", | 733 "//ppapi/proxy:ipc", |
| 729 "//ppapi/shared_impl:test_support", | 734 "//ppapi/shared_impl:test_support", |
| 730 ] | 735 ] |
| (...skipping 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1688 if (is_android) { | 1693 if (is_android) { |
| 1689 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1694 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1690 } | 1695 } |
| 1691 } | 1696 } |
| 1692 | 1697 |
| 1693 group("fuzzers") { | 1698 group("fuzzers") { |
| 1694 deps = [ | 1699 deps = [ |
| 1695 "//content/test/fuzzer", | 1700 "//content/test/fuzzer", |
| 1696 ] | 1701 ] |
| 1697 } | 1702 } |
| OLD | NEW |