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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
(...skipping 1925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1936 "$root_out_dir/test_page.css", | 1936 "$root_out_dir/test_page.css", |
1937 "$root_out_dir/test_page.css.mock-http-headers", | 1937 "$root_out_dir/test_page.css.mock-http-headers", |
1938 "$root_out_dir/test_url_loader_data/", | 1938 "$root_out_dir/test_url_loader_data/", |
1939 ] | 1939 ] |
1940 | 1940 |
1941 if (!is_mac) { | 1941 if (!is_mac) { |
1942 data += [ "$root_out_dir/locales/" ] | 1942 data += [ "$root_out_dir/locales/" ] |
1943 data_deps += [ "//chrome:packed_extra_resources" ] | 1943 data_deps += [ "//chrome:packed_extra_resources" ] |
1944 } | 1944 } |
1945 | 1945 |
1946 if (is_linux) { | |
1947 data += [ "//testing/buildbot/filters/browser-side-navigation.linux.browse
r_tests.filter" ] | |
1948 } | |
1949 | |
1950 if (!enable_one_click_signin) { | 1946 if (!enable_one_click_signin) { |
1951 sources -= [ "../browser/ui/sync/one_click_signin_links_delegate_impl_brow
sertest.cc" ] | 1947 sources -= [ "../browser/ui/sync/one_click_signin_links_delegate_impl_brow
sertest.cc" ] |
1952 } | 1948 } |
1953 if (enable_nacl) { | 1949 if (enable_nacl) { |
1954 sources += [ | 1950 sources += [ |
1955 "../browser/chrome_service_worker_browsertest.cc", | 1951 "../browser/chrome_service_worker_browsertest.cc", |
1956 "../browser/extensions/extension_nacl_browsertest.cc", | 1952 "../browser/extensions/extension_nacl_browsertest.cc", |
1957 "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc", | 1953 "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc", |
1958 "nacl/nacl_browsertest.cc", | 1954 "nacl/nacl_browsertest.cc", |
1959 "nacl/nacl_browsertest_uma.cc", | 1955 "nacl/nacl_browsertest_uma.cc", |
(...skipping 14 matching lines...) Expand all Loading... |
1974 sources += [ "//third_party/liblouis/nacl_wrapper/liblouis_wrapper_brows
ertest.cc" ] | 1970 sources += [ "//third_party/liblouis/nacl_wrapper/liblouis_wrapper_brows
ertest.cc" ] |
1975 deps += [ "//chrome/browser/chromeos" ] | 1971 deps += [ "//chrome/browser/chromeos" ] |
1976 data_deps += [ "//third_party/liblouis:liblouis_test_data" ] | 1972 data_deps += [ "//third_party/liblouis:liblouis_test_data" ] |
1977 } else if (is_linux || is_win) { | 1973 } else if (is_linux || is_win) { |
1978 sources += [ | 1974 sources += [ |
1979 "../browser/ui/views/ime/ime_warning_bubble_browsertest.cc", | 1975 "../browser/ui/views/ime/ime_warning_bubble_browsertest.cc", |
1980 "../browser/ui/views/ime/ime_window_browsertest.cc", | 1976 "../browser/ui/views/ime/ime_window_browsertest.cc", |
1981 ] | 1977 ] |
1982 } | 1978 } |
1983 | 1979 |
| 1980 if (is_linux) { |
| 1981 data += [ "//testing/buildbot/filters/browser-side-navigation.linux.brow
ser_tests.filter" ] |
| 1982 } |
| 1983 |
1984 if (is_win || is_linux) { | 1984 if (is_win || is_linux) { |
1985 sources += [ "../browser/nacl_host/test/nacl_gdb_browsertest.cc" ] | 1985 sources += [ "../browser/nacl_host/test/nacl_gdb_browsertest.cc" ] |
1986 data_deps += [ "//chrome/browser/nacl_host/test:mock_nacl_gdb" ] | 1986 data_deps += [ "//chrome/browser/nacl_host/test:mock_nacl_gdb" ] |
| 1987 data += [ "//testing/buildbot/filters/site-per-process.browser_tests.fil
ter" ] |
1987 } | 1988 } |
1988 if (is_win) { | 1989 if (is_win) { |
1989 # TODO(halyavin) NaCl on Windows can't open debug stub socket in | 1990 # TODO(halyavin) NaCl on Windows can't open debug stub socket in |
1990 # browser process as needed by this test. See http://crbug.com/157312. | 1991 # browser process as needed by this test. See http://crbug.com/157312. |
1991 sources -= [ "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc" ] | 1992 sources -= [ "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc" ] |
1992 configs -= [ "//build/config/win:default_incremental_linking" ] | 1993 configs -= [ "//build/config/win:default_incremental_linking" ] |
1993 configs += | 1994 configs += |
1994 [ "//build/config/win:default_large_module_incremental_linking" ] | 1995 [ "//build/config/win:default_large_module_incremental_linking" ] |
1995 } | 1996 } |
1996 if (is_linux) { | 1997 if (is_linux) { |
(...skipping 2987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4984 "touch_hud", | 4985 "touch_hud", |
4985 "ui", | 4986 "ui", |
4986 ] | 4987 ] |
4987 | 4988 |
4988 if (is_linux && !is_android) { | 4989 if (is_linux && !is_android) { |
4989 deps += [ "//components/font_service:manifest" ] | 4990 deps += [ "//components/font_service:manifest" ] |
4990 packaged_services += [ "font_service" ] | 4991 packaged_services += [ "font_service" ] |
4991 } | 4992 } |
4992 } | 4993 } |
4993 } | 4994 } |
OLD | NEW |