| 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 1354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1365 "../browser/extensions/api/networking_private/networking_private_chromeo
s_apitest.cc", | 1365 "../browser/extensions/api/networking_private/networking_private_chromeo
s_apitest.cc", |
| 1366 ] | 1366 ] |
| 1367 } | 1367 } |
| 1368 if (is_android || is_ios || is_chromeos) { | 1368 if (is_android || is_ios || is_chromeos) { |
| 1369 sources -= [ "../browser/profiles/profile_statistics_browsertest.cc" ] | 1369 sources -= [ "../browser/profiles/profile_statistics_browsertest.cc" ] |
| 1370 } | 1370 } |
| 1371 if (!is_android && !is_ios) { | 1371 if (!is_android && !is_ios) { |
| 1372 sources += | 1372 sources += |
| 1373 [ "../browser/copresence/chrome_whispernet_client_browsertest.cc" ] | 1373 [ "../browser/copresence/chrome_whispernet_client_browsertest.cc" ] |
| 1374 deps += [ | 1374 deps += [ |
| 1375 "//components/copresence", | 1375 "//components/audio_modem", |
| 1376 "//third_party/libaddressinput", | 1376 "//third_party/libaddressinput", |
| 1377 ] | 1377 ] |
| 1378 } | 1378 } |
| 1379 if (enable_app_list) { | 1379 if (enable_app_list) { |
| 1380 sources += rebase_path( | 1380 sources += rebase_path( |
| 1381 chrome_tests_gypi_values.chrome_browser_tests_app_list_sources, | 1381 chrome_tests_gypi_values.chrome_browser_tests_app_list_sources, |
| 1382 ".", | 1382 ".", |
| 1383 "//chrome") | 1383 "//chrome") |
| 1384 if (is_mac) { | 1384 if (is_mac) { |
| 1385 # This assumes the AppList is views-based, but Mac only links | 1385 # This assumes the AppList is views-based, but Mac only links |
| (...skipping 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2453 if (is_android) { | 2453 if (is_android) { |
| 2454 android_library("unit_tests_java") { | 2454 android_library("unit_tests_java") { |
| 2455 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2455 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2456 deps = [ | 2456 deps = [ |
| 2457 "//base:base_java", | 2457 "//base:base_java", |
| 2458 "//chrome/android:chrome_java", | 2458 "//chrome/android:chrome_java", |
| 2459 "//content/public/android:content_java", | 2459 "//content/public/android:content_java", |
| 2460 ] | 2460 ] |
| 2461 } | 2461 } |
| 2462 } | 2462 } |
| OLD | NEW |