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 2291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2302 "//chrome/browser", | 2302 "//chrome/browser", |
2303 "//chrome/child", | 2303 "//chrome/child", |
2304 "//components/crash/core/common", | 2304 "//components/crash/core/common", |
2305 "//components/flags_ui:switches", | 2305 "//components/flags_ui:switches", |
2306 "//third_party/cld_2:cld2_platform_impl", | 2306 "//third_party/cld_2:cld2_platform_impl", |
2307 "//third_party/kasko:kasko_features", | 2307 "//third_party/kasko:kasko_features", |
2308 ] | 2308 ] |
2309 } | 2309 } |
2310 } | 2310 } |
2311 | 2311 |
2312 if (is_win || (is_linux && !is_chromeos)) { | 2312 if (!is_android && !is_ios && !is_chromecast) { |
2313 test("performance_browser_tests") { | 2313 test("performance_browser_tests") { |
2314 sources = | 2314 sources = |
2315 rebase_path(chrome_tests_gypi_values.performance_browser_tests_sources, | 2315 rebase_path(chrome_tests_gypi_values.performance_browser_tests_sources, |
2316 ".", | 2316 ".", |
2317 "//chrome") | 2317 "//chrome") |
2318 | 2318 |
2319 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 2319 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
2320 | 2320 |
2321 deps = [ | 2321 deps = [ |
2322 ":test_support", | 2322 ":test_support", |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2384 if (is_android) { | 2384 if (is_android) { |
2385 android_library("unit_tests_java") { | 2385 android_library("unit_tests_java") { |
2386 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2386 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
2387 deps = [ | 2387 deps = [ |
2388 "//base:base_java", | 2388 "//base:base_java", |
2389 "//chrome/android:chrome_java", | 2389 "//chrome/android:chrome_java", |
2390 "//content/public/android:content_java", | 2390 "//content/public/android:content_java", |
2391 ] | 2391 ] |
2392 } | 2392 } |
2393 } | 2393 } |
OLD | NEW |