| 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 2100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2111 ".", | 2111 ".", |
| 2112 "//chrome") | 2112 "//chrome") |
| 2113 } | 2113 } |
| 2114 if (!is_mac) { | 2114 if (!is_mac) { |
| 2115 sources += rebase_path( | 2115 sources += rebase_path( |
| 2116 chrome_tests_unit_gypi_values.chrome_unit_tests_views_non_mac_sour
ces, | 2116 chrome_tests_unit_gypi_values.chrome_unit_tests_views_non_mac_sour
ces, |
| 2117 ".", | 2117 ".", |
| 2118 "//chrome") | 2118 "//chrome") |
| 2119 } | 2119 } |
| 2120 } | 2120 } |
| 2121 if (!is_android && (use_nss_certs || use_openssl_certs)) { | 2121 if (!is_android && use_nss_certs) { |
| 2122 sources += [ "../common/net/x509_certificate_model_unittest.cc" ] | 2122 sources += [ "../common/net/x509_certificate_model_unittest.cc" ] |
| 2123 } | 2123 } |
| 2124 if (enable_supervised_users) { | 2124 if (enable_supervised_users) { |
| 2125 sources += rebase_path( | 2125 sources += rebase_path( |
| 2126 chrome_tests_unit_gypi_values.chrome_unit_tests_supervised_user_sour
ces, | 2126 chrome_tests_unit_gypi_values.chrome_unit_tests_supervised_user_sour
ces, |
| 2127 ".", | 2127 ".", |
| 2128 "//chrome") | 2128 "//chrome") |
| 2129 } | 2129 } |
| 2130 if (enable_supervised_users && !is_android && !is_ios) { | 2130 if (enable_supervised_users && !is_android && !is_ios) { |
| 2131 sources += rebase_path( | 2131 sources += rebase_path( |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2266 if (is_android) { | 2266 if (is_android) { |
| 2267 android_library("unit_tests_java") { | 2267 android_library("unit_tests_java") { |
| 2268 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2268 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2269 deps = [ | 2269 deps = [ |
| 2270 "//base:base_java", | 2270 "//base:base_java", |
| 2271 "//chrome/android:chrome_java", | 2271 "//chrome/android:chrome_java", |
| 2272 "//content/public/android:content_java", | 2272 "//content/public/android:content_java", |
| 2273 ] | 2273 ] |
| 2274 } | 2274 } |
| 2275 } | 2275 } |
| OLD | NEW |