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

Side by Side Diff: components/os_crypt/BUILD.gn

Issue 2256633002: Add two more options for the --password-store switch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | components/os_crypt/key_storage_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/config/linux/pkg_config.gni") 7 import("//build/config/linux/pkg_config.gni")
8 import("//components/os_crypt/features.gni") 8 import("//components/os_crypt/features.gni")
9 9
10 if (use_gnome_keyring) { 10 if (use_gnome_keyring) {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 66
67 if (is_win) { 67 if (is_win) {
68 libs = [ "crypt32.lib" ] 68 libs = [ "crypt32.lib" ]
69 } 69 }
70 70
71 if (is_desktop_linux) { 71 if (is_desktop_linux) {
72 sources -= [ "os_crypt_posix.cc" ] 72 sources -= [ "os_crypt_posix.cc" ]
73 sources += [ 73 sources += [
74 "key_storage_linux.cc", 74 "key_storage_linux.cc",
75 "key_storage_linux.h", 75 "key_storage_linux.h",
76 "key_storage_util_linux.cc",
77 "key_storage_util_linux.h",
76 "os_crypt_linux.cc", 78 "os_crypt_linux.cc",
77 ] 79 ]
78 defines = [] 80 defines = []
79 81
80 if (use_gnome_keyring) { 82 if (use_gnome_keyring) {
81 sources += [ 83 sources += [
82 "keyring_util_linux.cc", 84 "keyring_util_linux.cc",
83 "keyring_util_linux.h", 85 "keyring_util_linux.h",
84 ] 86 ]
85 configs += [ ":gnome_keyring" ] 87 configs += [ ":gnome_keyring" ]
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 if (use_dbus) { 164 if (use_dbus) {
163 sources += [ 165 sources += [
164 "key_storage_kwallet_unittest.cc", 166 "key_storage_kwallet_unittest.cc",
165 "kwallet_dbus_unittest.cc", 167 "kwallet_dbus_unittest.cc",
166 ] 168 ]
167 deps += [ "//dbus:test_support" ] 169 deps += [ "//dbus:test_support" ]
168 defines += [ "USE_KWALLET" ] 170 defines += [ "USE_KWALLET" ]
169 } 171 }
170 } 172 }
171 } 173 }
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | components/os_crypt/key_storage_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698