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