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