| 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 1581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1592 if (is_chromeos) { | 1592 if (is_chromeos) { |
| 1593 deps += [ "//chromeos" ] | 1593 deps += [ "//chromeos" ] |
| 1594 } | 1594 } |
| 1595 if (is_android) { | 1595 if (is_android) { |
| 1596 sources += [ | 1596 sources += [ |
| 1597 "../browser/android/java/gin_java_method_invocation_helper_unittest.cc", | 1597 "../browser/android/java/gin_java_method_invocation_helper_unittest.cc", |
| 1598 "../browser/android/java/java_type_unittest.cc", | 1598 "../browser/android/java/java_type_unittest.cc", |
| 1599 "../browser/android/java/jni_helper_unittest.cc", | 1599 "../browser/android/java/jni_helper_unittest.cc", |
| 1600 "../browser/android/scoped_surface_request_manager_unittest.cc", | 1600 "../browser/android/scoped_surface_request_manager_unittest.cc", |
| 1601 "../browser/android/url_request_content_job_unittest.cc", | 1601 "../browser/android/url_request_content_job_unittest.cc", |
| 1602 "../browser/media/capture/screen_capture_device_android_unittest.cc", |
| 1602 "../renderer/java/gin_java_bridge_value_converter_unittest.cc", | 1603 "../renderer/java/gin_java_bridge_value_converter_unittest.cc", |
| 1603 "../renderer/media/android/stream_texture_wrapper_impl_unittest.cc", | 1604 "../renderer/media/android/stream_texture_wrapper_impl_unittest.cc", |
| 1604 ] | 1605 ] |
| 1605 sources -= [ | 1606 sources -= [ |
| 1606 "../browser/media/session/audio_focus_manager_unittest.cc", | 1607 "../browser/media/session/audio_focus_manager_unittest.cc", |
| 1607 "../browser/power_usage_monitor_impl_unittest.cc", | 1608 "../browser/power_usage_monitor_impl_unittest.cc", |
| 1608 "../browser/webui/url_data_manager_backend_unittest.cc", | 1609 "../browser/webui/url_data_manager_backend_unittest.cc", |
| 1609 ] | 1610 ] |
| 1610 deps -= [ "//device/battery" ] | 1611 deps -= [ "//device/battery" ] |
| 1611 | 1612 |
| 1612 deps += [ | 1613 deps += [ |
| 1613 "//base:base_java_unittest_support", | 1614 "//base:base_java_unittest_support", |
| 1614 "//content/public/android:content_java", | 1615 "//content/public/android:content_java", |
| 1615 "//device/geolocation:geolocation_java", | 1616 "//device/geolocation:geolocation_java", |
| 1617 "//media/capture/content/android", |
| 1618 "//media/capture/content/android:screen_capture_java", |
| 1616 "//v8:v8_external_startup_data_assets", | 1619 "//v8:v8_external_startup_data_assets", |
| 1617 ] | 1620 ] |
| 1618 | 1621 |
| 1619 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] | 1622 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] |
| 1620 } | 1623 } |
| 1621 if (!is_android) { | 1624 if (!is_android) { |
| 1622 deps += [ "//third_party/libvpx" ] | 1625 deps += [ "//third_party/libvpx" ] |
| 1623 } | 1626 } |
| 1624 | 1627 |
| 1625 if (use_aura) { | 1628 if (use_aura) { |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1704 if (is_android) { | 1707 if (is_android) { |
| 1705 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1708 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1706 } | 1709 } |
| 1707 } | 1710 } |
| 1708 | 1711 |
| 1709 group("fuzzers") { | 1712 group("fuzzers") { |
| 1710 deps = [ | 1713 deps = [ |
| 1711 "//content/test/fuzzer", | 1714 "//content/test/fuzzer", |
| 1712 ] | 1715 ] |
| 1713 } | 1716 } |
| OLD | NEW |