| 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/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 1661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1672 } | 1672 } |
| 1673 if (is_chromeos) { | 1673 if (is_chromeos) { |
| 1674 deps += [ "//chromeos" ] | 1674 deps += [ "//chromeos" ] |
| 1675 } | 1675 } |
| 1676 if (is_android) { | 1676 if (is_android) { |
| 1677 sources += [ | 1677 sources += [ |
| 1678 "../browser/android/java/gin_java_method_invocation_helper_unittest.cc", | 1678 "../browser/android/java/gin_java_method_invocation_helper_unittest.cc", |
| 1679 "../browser/android/java/java_type_unittest.cc", | 1679 "../browser/android/java/java_type_unittest.cc", |
| 1680 "../browser/android/java/jni_helper_unittest.cc", | 1680 "../browser/android/java/jni_helper_unittest.cc", |
| 1681 "../browser/android/scoped_surface_request_manager_unittest.cc", | 1681 "../browser/android/scoped_surface_request_manager_unittest.cc", |
| 1682 "../browser/android/string_message_codec_unittest.cc", |
| 1682 "../browser/android/url_request_content_job_unittest.cc", | 1683 "../browser/android/url_request_content_job_unittest.cc", |
| 1683 "../browser/media/capture/screen_capture_device_android_unittest.cc", | 1684 "../browser/media/capture/screen_capture_device_android_unittest.cc", |
| 1684 "../renderer/java/gin_java_bridge_value_converter_unittest.cc", | 1685 "../renderer/java/gin_java_bridge_value_converter_unittest.cc", |
| 1685 "../renderer/media/android/stream_texture_wrapper_impl_unittest.cc", | 1686 "../renderer/media/android/stream_texture_wrapper_impl_unittest.cc", |
| 1686 ] | 1687 ] |
| 1687 sources -= [ | 1688 sources -= [ |
| 1688 "../browser/media/session/audio_focus_manager_unittest.cc", | 1689 "../browser/media/session/audio_focus_manager_unittest.cc", |
| 1689 "../browser/webui/url_data_manager_backend_unittest.cc", | 1690 "../browser/webui/url_data_manager_backend_unittest.cc", |
| 1690 ] | 1691 ] |
| 1691 deps -= [ "//device/battery" ] | 1692 deps -= [ "//device/battery" ] |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1807 if (is_android) { | 1808 if (is_android) { |
| 1808 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1809 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1809 } | 1810 } |
| 1810 } | 1811 } |
| 1811 | 1812 |
| 1812 group("fuzzers") { | 1813 group("fuzzers") { |
| 1813 deps = [ | 1814 deps = [ |
| 1814 "//content/test/fuzzer", | 1815 "//content/test/fuzzer", |
| 1815 ] | 1816 ] |
| 1816 } | 1817 } |
| OLD | NEW |