| 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 2134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2145 data_deps += [ "//tools/xdisplaycheck" ] | 2145 data_deps += [ "//tools/xdisplaycheck" ] |
| 2146 } else { | 2146 } else { |
| 2147 sources -= [ "../browser/password_manager/password_store_x_unittest.cc" ] | 2147 sources -= [ "../browser/password_manager/password_store_x_unittest.cc" ] |
| 2148 } | 2148 } |
| 2149 if (is_desktop_linux && current_cpu == "x64") { | 2149 if (is_desktop_linux && current_cpu == "x64") { |
| 2150 # Only add this test for 64 bit builds because otherwise we need the 32 | 2150 # Only add this test for 64 bit builds because otherwise we need the 32 |
| 2151 # bit library on 64 bit systems when running this test. | 2151 # bit library on 64 bit systems when running this test. |
| 2152 sources += | 2152 sources += |
| 2153 [ "../browser/password_manager/native_backend_gnome_x_unittest.cc" ] | 2153 [ "../browser/password_manager/native_backend_gnome_x_unittest.cc" ] |
| 2154 configs += [ | 2154 configs += [ |
| 2155 "//chrome/browser:gnome_keyring", | 2155 "//components/os_crypt:gnome_keyring", |
| 2156 "//chrome/browser:gnome_keyring_direct", | 2156 "//components/os_crypt:gnome_keyring_direct", |
| 2157 ] | 2157 ] |
| 2158 } | 2158 } |
| 2159 if (is_linux && !is_chromeos) { | 2159 if (is_linux && !is_chromeos) { |
| 2160 sources += | 2160 sources += |
| 2161 [ "../browser/password_manager/native_backend_libsecret_unittest.cc" ] | 2161 [ "../browser/password_manager/native_backend_libsecret_unittest.cc" ] |
| 2162 deps += [ "//third_party/libsecret" ] | 2162 deps += [ "//third_party/libsecret" ] |
| 2163 } | 2163 } |
| 2164 if (is_linux && use_aura) { | 2164 if (is_linux && use_aura) { |
| 2165 deps += [ "//ui/aura:test_support" ] | 2165 deps += [ "//ui/aura:test_support" ] |
| 2166 if (use_dbus) { | 2166 if (use_dbus) { |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2499 if (is_android) { | 2499 if (is_android) { |
| 2500 android_library("unit_tests_java") { | 2500 android_library("unit_tests_java") { |
| 2501 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2501 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2502 deps = [ | 2502 deps = [ |
| 2503 "//base:base_java", | 2503 "//base:base_java", |
| 2504 "//chrome/android:chrome_java", | 2504 "//chrome/android:chrome_java", |
| 2505 "//content/public/android:content_java", | 2505 "//content/public/android:content_java", |
| 2506 ] | 2506 ] |
| 2507 } | 2507 } |
| 2508 } | 2508 } |
| OLD | NEW |