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/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
(...skipping 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1377 } | 1377 } |
1378 if (is_chromeos) { | 1378 if (is_chromeos) { |
1379 sources += [ | 1379 sources += [ |
1380 "../browser/extensions/api/networking_private/networking_private_apitest
.cc", | 1380 "../browser/extensions/api/networking_private/networking_private_apitest
.cc", |
1381 "../browser/extensions/api/networking_private/networking_private_chromeo
s_apitest.cc", | 1381 "../browser/extensions/api/networking_private/networking_private_chromeo
s_apitest.cc", |
1382 ] | 1382 ] |
1383 } | 1383 } |
1384 if (is_android || is_ios || is_chromeos) { | 1384 if (is_android || is_ios || is_chromeos) { |
1385 sources -= [ "../browser/profiles/profile_statistics_browsertest.cc" ] | 1385 sources -= [ "../browser/profiles/profile_statistics_browsertest.cc" ] |
1386 } | 1386 } |
1387 if (!is_android && !is_ios) { | |
1388 sources += | |
1389 [ "../browser/copresence/chrome_whispernet_client_browsertest.cc" ] | |
1390 deps += [ | |
1391 "//components/audio_modem", | |
1392 "//third_party/libaddressinput", | |
1393 ] | |
1394 } | |
1395 if (enable_app_list) { | 1387 if (enable_app_list) { |
1396 sources += rebase_path( | 1388 sources += rebase_path( |
1397 chrome_tests_gypi_values.chrome_browser_tests_app_list_sources, | 1389 chrome_tests_gypi_values.chrome_browser_tests_app_list_sources, |
1398 ".", | 1390 ".", |
1399 "//chrome") | 1391 "//chrome") |
1400 if (is_mac) { | 1392 if (is_mac) { |
1401 # This assumes the AppList is views-based, but Mac only links | 1393 # This assumes the AppList is views-based, but Mac only links |
1402 # browser parts for the Cocoa implementation. | 1394 # browser parts for the Cocoa implementation. |
1403 sources -= | 1395 sources -= |
1404 [ "../browser/ui/app_list/app_list_service_views_browsertest.cc" ] | 1396 [ "../browser/ui/app_list/app_list_service_views_browsertest.cc" ] |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1934 ] | 1926 ] |
1935 } | 1927 } |
1936 | 1928 |
1937 if (enable_extensions) { | 1929 if (enable_extensions) { |
1938 sources += rebase_path( | 1930 sources += rebase_path( |
1939 chrome_tests_unit_gypi_values.chrome_unit_tests_extensions_sources, | 1931 chrome_tests_unit_gypi_values.chrome_unit_tests_extensions_sources, |
1940 ".", | 1932 ".", |
1941 "//chrome") | 1933 "//chrome") |
1942 deps += [ | 1934 deps += [ |
1943 "//chrome/common/extensions/api", | 1935 "//chrome/common/extensions/api", |
1944 "//components/audio_modem:test_support", | |
1945 "//extensions:extensions_resources", | 1936 "//extensions:extensions_resources", |
1946 "//extensions/strings", | 1937 "//extensions/strings", |
1947 ] | 1938 ] |
1948 if (enable_service_discovery) { | 1939 if (enable_service_discovery) { |
1949 sources += rebase_path( | 1940 sources += rebase_path( |
1950 chrome_tests_unit_gypi_values.chrome_unit_tests_extensions_service
_discovery_sources, | 1941 chrome_tests_unit_gypi_values.chrome_unit_tests_extensions_service
_discovery_sources, |
1951 ".", | 1942 ".", |
1952 "//chrome") | 1943 "//chrome") |
1953 } | 1944 } |
1954 if (!is_chromeos) { | 1945 if (!is_chromeos) { |
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2469 if (is_android) { | 2460 if (is_android) { |
2470 android_library("unit_tests_java") { | 2461 android_library("unit_tests_java") { |
2471 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2462 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
2472 deps = [ | 2463 deps = [ |
2473 "//base:base_java", | 2464 "//base:base_java", |
2474 "//chrome/android:chrome_java", | 2465 "//chrome/android:chrome_java", |
2475 "//content/public/android:content_java", | 2466 "//content/public/android:content_java", |
2476 ] | 2467 ] |
2477 } | 2468 } |
2478 } | 2469 } |
OLD | NEW |