| 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 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 sources += [ "../zygote/zygote_browsertest.cc" ] | 858 sources += [ "../zygote/zygote_browsertest.cc" ] |
| 859 } | 859 } |
| 860 | 860 |
| 861 if (is_android) { | 861 if (is_android) { |
| 862 if (is_component_build) { | 862 if (is_component_build) { |
| 863 sources += [ "../browser/android/render_widget_host_connector.cc" ] | 863 sources += [ "../browser/android/render_widget_host_connector.cc" ] |
| 864 } | 864 } |
| 865 sources += [ | 865 sources += [ |
| 866 "../browser/accessibility/android_granularity_movement_browsertest.cc", | 866 "../browser/accessibility/android_granularity_movement_browsertest.cc", |
| 867 "../browser/android/render_widget_host_connector_browsertest.cc", | 867 "../browser/android/render_widget_host_connector_browsertest.cc", |
| 868 "../browser/android/render_widget_host_connector_browsertest.h", |
| 868 "../browser/media/session/audio_focus_delegate_android_browsertest.cc", | 869 "../browser/media/session/audio_focus_delegate_android_browsertest.cc", |
| 869 "../shell/android/browsertests_apk/content_browser_tests_jni_onload.cc", | 870 "../shell/android/browsertests_apk/content_browser_tests_jni_onload.cc", |
| 870 ] | 871 ] |
| 871 sources -= [ | 872 sources -= [ |
| 872 "../browser/media/session/audio_focus_delegate_default_browsertest.cc", | 873 "../browser/media/session/audio_focus_delegate_default_browsertest.cc", |
| 873 "../browser/pointer_lock_browsertest.cc", | 874 "../browser/pointer_lock_browsertest.cc", |
| 874 "../browser/pointer_lock_browsertest.h", | 875 "../browser/pointer_lock_browsertest.h", |
| 875 ] | 876 ] |
| 876 deps += [ | 877 deps += [ |
| 877 ":content_browsertests_java", | 878 ":content_browsertests_java", |
| (...skipping 943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1821 if (is_android) { | 1822 if (is_android) { |
| 1822 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1823 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1823 } | 1824 } |
| 1824 } | 1825 } |
| 1825 | 1826 |
| 1826 group("fuzzers") { | 1827 group("fuzzers") { |
| 1827 deps = [ | 1828 deps = [ |
| 1828 "//content/test/fuzzer", | 1829 "//content/test/fuzzer", |
| 1829 ] | 1830 ] |
| 1830 } | 1831 } |
| OLD | NEW |