| 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 1371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 } | 1382 } |
| 1383 if (!is_posix || is_chromeos) { | 1383 if (!is_posix || is_chromeos) { |
| 1384 sources -= [ "../common/time_format_browsertest.cc" ] | 1384 sources -= [ "../common/time_format_browsertest.cc" ] |
| 1385 } | 1385 } |
| 1386 if (is_chromeos) { | 1386 if (is_chromeos) { |
| 1387 sources += [ | 1387 sources += [ |
| 1388 "../browser/extensions/api/networking_private/networking_private_apitest
.cc", | 1388 "../browser/extensions/api/networking_private/networking_private_apitest
.cc", |
| 1389 "../browser/extensions/api/networking_private/networking_private_chromeo
s_apitest.cc", | 1389 "../browser/extensions/api/networking_private/networking_private_chromeo
s_apitest.cc", |
| 1390 ] | 1390 ] |
| 1391 } | 1391 } |
| 1392 if (is_android || is_ios || is_chromeos) { | 1392 if (is_mac || is_win || (is_linux && !is_chromeos)) { |
| 1393 sources -= [ "../browser/profiles/profile_statistics_browsertest.cc" ] | 1393 sources += rebase_path( |
| 1394 chrome_tests_gypi_values.chrome_browser_tests_non_mobile_non_cros_
sources, |
| 1395 ".", |
| 1396 "//chrome") |
| 1394 } | 1397 } |
| 1395 if (enable_app_list) { | 1398 if (enable_app_list) { |
| 1396 sources += rebase_path( | 1399 sources += rebase_path( |
| 1397 chrome_tests_gypi_values.chrome_browser_tests_app_list_sources, | 1400 chrome_tests_gypi_values.chrome_browser_tests_app_list_sources, |
| 1398 ".", | 1401 ".", |
| 1399 "//chrome") | 1402 "//chrome") |
| 1400 if (is_mac) { | 1403 if (is_mac) { |
| 1401 # This assumes the AppList is views-based, but Mac only links | 1404 # This assumes the AppList is views-based, but Mac only links |
| 1402 # browser parts for the Cocoa implementation. | 1405 # browser parts for the Cocoa implementation. |
| 1403 sources -= | 1406 sources -= |
| (...skipping 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2474 if (is_android) { | 2477 if (is_android) { |
| 2475 android_library("unit_tests_java") { | 2478 android_library("unit_tests_java") { |
| 2476 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2479 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2477 deps = [ | 2480 deps = [ |
| 2478 "//base:base_java", | 2481 "//base:base_java", |
| 2479 "//chrome/android:chrome_java", | 2482 "//chrome/android:chrome_java", |
| 2480 "//content/public/android:content_java", | 2483 "//content/public/android:content_java", |
| 2481 ] | 2484 ] |
| 2482 } | 2485 } |
| 2483 } | 2486 } |
| OLD | NEW |