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 1943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1954 sources += | 1954 sources += |
1955 [ "../browser/password_manager/native_backend_gnome_x_unittest.cc" ] | 1955 [ "../browser/password_manager/native_backend_gnome_x_unittest.cc" ] |
1956 configs += [ | 1956 configs += [ |
1957 "//chrome/browser:gnome_keyring", | 1957 "//chrome/browser:gnome_keyring", |
1958 "//chrome/browser:gnome_keyring_direct", | 1958 "//chrome/browser:gnome_keyring_direct", |
1959 ] | 1959 ] |
1960 } | 1960 } |
1961 if (is_linux && !is_chromeos) { | 1961 if (is_linux && !is_chromeos) { |
1962 sources += | 1962 sources += |
1963 [ "../browser/password_manager/native_backend_libsecret_unittest.cc" ] | 1963 [ "../browser/password_manager/native_backend_libsecret_unittest.cc" ] |
| 1964 deps += [ "//third_party/libsecret" ] |
1964 } | 1965 } |
1965 if (is_linux && use_aura) { | 1966 if (is_linux && use_aura) { |
1966 deps += [ | 1967 deps += [ |
1967 "//dbus", | 1968 "//dbus", |
1968 "//dbus:test_support", | 1969 "//dbus:test_support", |
1969 "//ui/aura:test_support", | 1970 "//ui/aura:test_support", |
1970 ] | 1971 ] |
1971 } | 1972 } |
1972 if (is_linux && is_chrome_branded && current_cpu == "x86") { | 1973 if (is_linux && is_chrome_branded && current_cpu == "x86") { |
1973 ldflags = [ "-Wl,--strip-debug" ] | 1974 ldflags = [ "-Wl,--strip-debug" ] |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2266 if (is_android) { | 2267 if (is_android) { |
2267 android_library("unit_tests_java") { | 2268 android_library("unit_tests_java") { |
2268 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2269 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
2269 deps = [ | 2270 deps = [ |
2270 "//base:base_java", | 2271 "//base:base_java", |
2271 "//chrome/android:chrome_java", | 2272 "//chrome/android:chrome_java", |
2272 "//content/public/android:content_java", | 2273 "//content/public/android:content_java", |
2273 ] | 2274 ] |
2274 } | 2275 } |
2275 } | 2276 } |
OLD | NEW |