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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 "//content:sandbox_helper_win", | 350 "//content:sandbox_helper_win", |
351 "//third_party/iaccessible2", | 351 "//third_party/iaccessible2", |
352 ] | 352 ] |
353 } | 353 } |
354 | 354 |
355 if (is_android) { | 355 if (is_android) { |
356 deps += [ | 356 deps += [ |
357 "//device/geolocation:geolocation_java", | 357 "//device/geolocation:geolocation_java", |
358 "//media/capture/video/android:android", | 358 "//media/capture/video/android:android", |
359 "//ui/android", | 359 "//ui/android", |
| 360 "//ui/android:test_support", |
360 "//ui/shell_dialogs", | 361 "//ui/shell_dialogs", |
361 ] | 362 ] |
362 } | 363 } |
363 | 364 |
364 if (is_win) { | 365 if (is_win) { |
365 deps += [ "//sandbox" ] | 366 deps += [ "//sandbox" ] |
366 } | 367 } |
367 | 368 |
368 if (v8_use_external_startup_data) { | 369 if (v8_use_external_startup_data) { |
369 deps += [ "//gin:gin" ] | 370 deps += [ "//gin:gin" ] |
(...skipping 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1612 "../browser/webui/url_data_manager_backend_unittest.cc", | 1613 "../browser/webui/url_data_manager_backend_unittest.cc", |
1613 ] | 1614 ] |
1614 deps -= [ "//device/battery" ] | 1615 deps -= [ "//device/battery" ] |
1615 | 1616 |
1616 deps += [ | 1617 deps += [ |
1617 "//base:base_java_unittest_support", | 1618 "//base:base_java_unittest_support", |
1618 "//content/public/android:content_java", | 1619 "//content/public/android:content_java", |
1619 "//device/geolocation:geolocation_java", | 1620 "//device/geolocation:geolocation_java", |
1620 "//media/capture/content/android", | 1621 "//media/capture/content/android", |
1621 "//media/capture/content/android:screen_capture_java", | 1622 "//media/capture/content/android:screen_capture_java", |
| 1623 "//ui/android:android", |
1622 "//v8:v8_external_startup_data_assets", | 1624 "//v8:v8_external_startup_data_assets", |
1623 ] | 1625 ] |
1624 | 1626 |
1625 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] | 1627 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] |
1626 } | 1628 } |
1627 if (!is_android) { | 1629 if (!is_android) { |
1628 deps += [ "//third_party/libvpx" ] | 1630 deps += [ "//third_party/libvpx" ] |
1629 } | 1631 } |
1630 | 1632 |
1631 if (use_aura) { | 1633 if (use_aura) { |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1710 if (is_android) { | 1712 if (is_android) { |
1711 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1713 deps += [ "//testing/android/native_test:native_test_native_code" ] |
1712 } | 1714 } |
1713 } | 1715 } |
1714 | 1716 |
1715 group("fuzzers") { | 1717 group("fuzzers") { |
1716 deps = [ | 1718 deps = [ |
1717 "//content/test/fuzzer", | 1719 "//content/test/fuzzer", |
1718 ] | 1720 ] |
1719 } | 1721 } |
OLD | NEW |