| 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/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 962 sources += [ | 962 sources += [ |
| 963 "../browser/extensions/api/networking_private/networking_private_apitest
.cc", | 963 "../browser/extensions/api/networking_private/networking_private_apitest
.cc", |
| 964 "../browser/extensions/api/networking_private/networking_private_chromeo
s_apitest.cc", | 964 "../browser/extensions/api/networking_private/networking_private_chromeo
s_apitest.cc", |
| 965 ] | 965 ] |
| 966 } | 966 } |
| 967 if (!is_android && !is_ios) { | 967 if (!is_android && !is_ios) { |
| 968 sources += | 968 sources += |
| 969 [ "../browser/copresence/chrome_whispernet_client_browsertest.cc" ] | 969 [ "../browser/copresence/chrome_whispernet_client_browsertest.cc" ] |
| 970 deps += [ "//components/copresence" ] | 970 deps += [ "//components/copresence" ] |
| 971 } | 971 } |
| 972 if (!is_android && !is_ios && !is_linux) { | |
| 973 # NPAPI test plugin only works on some platforms. | |
| 974 data_deps += [ | |
| 975 #'../content/content_shell_and_tests.gyp:copy_npapi_test_plugin', TODO(
GYP) | |
| 976 ] | |
| 977 } | |
| 978 if (enable_app_list) { | 972 if (enable_app_list) { |
| 979 sources += rebase_path( | 973 sources += rebase_path( |
| 980 chrome_tests_gypi_values.chrome_browser_tests_app_list_sources, | 974 chrome_tests_gypi_values.chrome_browser_tests_app_list_sources, |
| 981 ".", | 975 ".", |
| 982 "//chrome") | 976 "//chrome") |
| 983 } | 977 } |
| 984 if (enable_supervised_users) { | 978 if (enable_supervised_users) { |
| 985 sources += rebase_path( | 979 sources += rebase_path( |
| 986 chrome_tests_gypi_values.chrome_browser_tests_supervised_user_sour
ces, | 980 chrome_tests_gypi_values.chrome_browser_tests_supervised_user_sour
ces, |
| 987 ".", | 981 ".", |
| (...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1824 "//third_party/mojo/src/mojo/edk/system", | 1818 "//third_party/mojo/src/mojo/edk/system", |
| 1825 ] | 1819 ] |
| 1826 | 1820 |
| 1827 if (!is_android && use_ash) { | 1821 if (!is_android && use_ash) { |
| 1828 sources += | 1822 sources += |
| 1829 rebase_path(unit_gypi_values.chrome_test_support_unit_ash_sources, | 1823 rebase_path(unit_gypi_values.chrome_test_support_unit_ash_sources, |
| 1830 ".", | 1824 ".", |
| 1831 "//chrome") | 1825 "//chrome") |
| 1832 } | 1826 } |
| 1833 } | 1827 } |
| OLD | NEW |