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 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
854 ] | 854 ] |
855 | 855 |
856 libs = [ "oleacc.lib" ] | 856 libs = [ "oleacc.lib" ] |
857 | 857 |
858 if (symbol_level != 0) { | 858 if (symbol_level != 0) { |
859 data += [ "$root_out_dir/content_browsertests.exe.pdb" ] | 859 data += [ "$root_out_dir/content_browsertests.exe.pdb" ] |
860 } | 860 } |
861 } | 861 } |
862 | 862 |
863 if (is_linux) { | 863 if (is_linux) { |
864 sources += [ "../zygote/zygote_browsertest.cc" ] | 864 sources += [ |
| 865 "../browser/linux_ipc_browsertest.cc", |
| 866 "../zygote/zygote_browsertest.cc", |
| 867 ] |
| 868 deps += [ "//ui/gfx:test_support" ] |
865 } | 869 } |
866 | 870 |
867 if (is_android) { | 871 if (is_android) { |
868 if (is_component_build) { | 872 if (is_component_build) { |
869 sources += [ "../browser/android/render_widget_host_connector.cc" ] | 873 sources += [ "../browser/android/render_widget_host_connector.cc" ] |
870 } | 874 } |
871 sources += [ | 875 sources += [ |
872 "../browser/accessibility/android_granularity_movement_browsertest.cc", | 876 "../browser/accessibility/android_granularity_movement_browsertest.cc", |
873 "../browser/android/render_widget_host_connector_browsertest.cc", | 877 "../browser/android/render_widget_host_connector_browsertest.cc", |
874 "../browser/android/render_widget_host_connector_browsertest.h", | 878 "../browser/android/render_widget_host_connector_browsertest.h", |
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1829 if (is_android) { | 1833 if (is_android) { |
1830 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1834 deps += [ "//testing/android/native_test:native_test_native_code" ] |
1831 } | 1835 } |
1832 } | 1836 } |
1833 | 1837 |
1834 group("fuzzers") { | 1838 group("fuzzers") { |
1835 deps = [ | 1839 deps = [ |
1836 "//content/test/fuzzer", | 1840 "//content/test/fuzzer", |
1837 ] | 1841 ] |
1838 } | 1842 } |
OLD | NEW |