| 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", | |
| 361 "//ui/shell_dialogs", | 360 "//ui/shell_dialogs", |
| 362 ] | 361 ] |
| 363 } | 362 } |
| 364 | 363 |
| 365 if (is_win) { | 364 if (is_win) { |
| 366 deps += [ "//sandbox" ] | 365 deps += [ "//sandbox" ] |
| 367 } | 366 } |
| 368 | 367 |
| 369 if (v8_use_external_startup_data) { | 368 if (v8_use_external_startup_data) { |
| 370 deps += [ "//gin:gin" ] | 369 deps += [ "//gin:gin" ] |
| (...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1609 "../browser/webui/url_data_manager_backend_unittest.cc", | 1608 "../browser/webui/url_data_manager_backend_unittest.cc", |
| 1610 ] | 1609 ] |
| 1611 deps -= [ "//device/battery" ] | 1610 deps -= [ "//device/battery" ] |
| 1612 | 1611 |
| 1613 deps += [ | 1612 deps += [ |
| 1614 "//base:base_java_unittest_support", | 1613 "//base:base_java_unittest_support", |
| 1615 "//content/public/android:content_java", | 1614 "//content/public/android:content_java", |
| 1616 "//device/geolocation:geolocation_java", | 1615 "//device/geolocation:geolocation_java", |
| 1617 "//media/capture/content/android", | 1616 "//media/capture/content/android", |
| 1618 "//media/capture/content/android:screen_capture_java", | 1617 "//media/capture/content/android:screen_capture_java", |
| 1619 "//ui/android:android", | |
| 1620 "//v8:v8_external_startup_data_assets", | 1618 "//v8:v8_external_startup_data_assets", |
| 1621 ] | 1619 ] |
| 1622 | 1620 |
| 1623 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] | 1621 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] |
| 1624 } | 1622 } |
| 1625 if (!is_android) { | 1623 if (!is_android) { |
| 1626 deps += [ "//third_party/libvpx" ] | 1624 deps += [ "//third_party/libvpx" ] |
| 1627 } | 1625 } |
| 1628 | 1626 |
| 1629 if (use_aura) { | 1627 if (use_aura) { |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1708 if (is_android) { | 1706 if (is_android) { |
| 1709 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1707 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1710 } | 1708 } |
| 1711 } | 1709 } |
| 1712 | 1710 |
| 1713 group("fuzzers") { | 1711 group("fuzzers") { |
| 1714 deps = [ | 1712 deps = [ |
| 1715 "//content/test/fuzzer", | 1713 "//content/test/fuzzer", |
| 1716 ] | 1714 ] |
| 1717 } | 1715 } |
| OLD | NEW |