| 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 1578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1589 } | 1589 } |
| 1590 if (is_android) { | 1590 if (is_android) { |
| 1591 sources += [ | 1591 sources += [ |
| 1592 "../browser/android/java/gin_java_method_invocation_helper_unittest.cc", | 1592 "../browser/android/java/gin_java_method_invocation_helper_unittest.cc", |
| 1593 "../browser/android/java/java_type_unittest.cc", | 1593 "../browser/android/java/java_type_unittest.cc", |
| 1594 "../browser/android/java/jni_helper_unittest.cc", | 1594 "../browser/android/java/jni_helper_unittest.cc", |
| 1595 "../browser/android/scoped_surface_request_manager_unittest.cc", | 1595 "../browser/android/scoped_surface_request_manager_unittest.cc", |
| 1596 "../browser/android/url_request_content_job_unittest.cc", | 1596 "../browser/android/url_request_content_job_unittest.cc", |
| 1597 "../renderer/java/gin_java_bridge_value_converter_unittest.cc", | 1597 "../renderer/java/gin_java_bridge_value_converter_unittest.cc", |
| 1598 "../renderer/media/android/stream_texture_wrapper_impl_unittest.cc", | 1598 "../renderer/media/android/stream_texture_wrapper_impl_unittest.cc", |
| 1599 "../renderer/media/android/webmediasession_android_unittest.cc", | |
| 1600 ] | 1599 ] |
| 1601 sources -= [ | 1600 sources -= [ |
| 1602 "../browser/media/session/audio_focus_manager_unittest.cc", | 1601 "../browser/media/session/audio_focus_manager_unittest.cc", |
| 1603 "../browser/power_usage_monitor_impl_unittest.cc", | 1602 "../browser/power_usage_monitor_impl_unittest.cc", |
| 1604 "../browser/webui/url_data_manager_backend_unittest.cc", | 1603 "../browser/webui/url_data_manager_backend_unittest.cc", |
| 1605 ] | 1604 ] |
| 1606 deps -= [ "//device/battery" ] | 1605 deps -= [ "//device/battery" ] |
| 1607 | 1606 |
| 1608 deps += [ | 1607 deps += [ |
| 1609 "//base:base_java_unittest_support", | 1608 "//base:base_java_unittest_support", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1701 if (is_android) { | 1700 if (is_android) { |
| 1702 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1701 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1703 } | 1702 } |
| 1704 } | 1703 } |
| 1705 | 1704 |
| 1706 group("fuzzers") { | 1705 group("fuzzers") { |
| 1707 deps = [ | 1706 deps = [ |
| 1708 "//content/test/fuzzer", | 1707 "//content/test/fuzzer", |
| 1709 ] | 1708 ] |
| 1710 } | 1709 } |
| OLD | NEW |