| 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 } | 860 } |
| 861 } | 861 } |
| 862 | 862 |
| 863 if (is_linux) { | 863 if (is_linux) { |
| 864 sources += [ "../zygote/zygote_browsertest.cc" ] | 864 sources += [ "../zygote/zygote_browsertest.cc" ] |
| 865 } | 865 } |
| 866 | 866 |
| 867 if (is_android) { | 867 if (is_android) { |
| 868 sources += [ | 868 sources += [ |
| 869 "../browser/accessibility/android_granularity_movement_browsertest.cc", | 869 "../browser/accessibility/android_granularity_movement_browsertest.cc", |
| 870 "../browser/android/render_widget_host_connector_browsertest.cc", |
| 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/battery_status/battery_monitor_impl_browsertest.cc", | 875 "../browser/battery_status/battery_monitor_impl_browsertest.cc", |
| 875 "../browser/media/session/audio_focus_delegate_default_browsertest.cc", | 876 "../browser/media/session/audio_focus_delegate_default_browsertest.cc", |
| 876 "../browser/pointer_lock_browsertest.cc", | 877 "../browser/pointer_lock_browsertest.cc", |
| 877 "../browser/pointer_lock_browsertest.h", | 878 "../browser/pointer_lock_browsertest.h", |
| 878 ] | 879 ] |
| 879 deps += [ | 880 deps += [ |
| (...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1858 if (is_android) { | 1859 if (is_android) { |
| 1859 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1860 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1860 } | 1861 } |
| 1861 } | 1862 } |
| 1862 | 1863 |
| 1863 group("fuzzers") { | 1864 group("fuzzers") { |
| 1864 deps = [ | 1865 deps = [ |
| 1865 "//content/test/fuzzer", | 1866 "//content/test/fuzzer", |
| 1866 ] | 1867 ] |
| 1867 } | 1868 } |
| OLD | NEW |