Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(517)

Unified Diff: components/os_crypt/BUILD.gn

Issue 2118443002: Forward password-store switch to OSCrypt component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Verify that target does not change after lazy initialization Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/os_crypt/BUILD.gn
diff --git a/components/os_crypt/BUILD.gn b/components/os_crypt/BUILD.gn
index 81da1116f068d618a05e887095c7381938c10128..4dc731bc1cb372cae6d176f2d710f5ad1c56f9e0 100644
--- a/components/os_crypt/BUILD.gn
+++ b/components/os_crypt/BUILD.gn
@@ -44,7 +44,7 @@ source_set("os_crypt") {
libs = [ "crypt32.lib" ]
}
- if (is_desktop_linux && (use_glib || use_dbus)) {
+ if (is_desktop_linux) {
sources -= [ "os_crypt_posix.cc" ]
sources += [
"key_storage_linux.cc",
@@ -86,7 +86,7 @@ source_set("test_support") {
"//base",
"//testing/gtest",
]
- if (is_desktop_linux && (use_glib || use_dbus)) {
+ if (is_desktop_linux) {
sources += [
"os_crypt_mocker_linux.cc",
"os_crypt_mocker_linux.h",
@@ -112,7 +112,7 @@ source_set("unit_tests") {
"//testing/gtest",
]
- if (is_desktop_linux && (use_glib || use_dbus)) {
+ if (is_desktop_linux) {
sources += [ "os_crypt_linux_unittest.cc" ]
defines = []

Powered by Google App Engine
This is Rietveld 408576698