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

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

Issue 2292933002: Renamed os_crypt_util_linux_unittest.cc to key_storage_libsecret_unittest.cc (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | components/os_crypt/key_storage_libsecret_unittest.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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 "//crypto", 150 "//crypto",
151 "//testing/gmock", 151 "//testing/gmock",
152 "//testing/gtest", 152 "//testing/gtest",
153 ] 153 ]
154 154
155 if (is_desktop_linux) { 155 if (is_desktop_linux) {
156 sources += [ "os_crypt_linux_unittest.cc" ] 156 sources += [ "os_crypt_linux_unittest.cc" ]
157 defines = [] 157 defines = []
158 158
159 if (use_glib) { 159 if (use_glib) {
160 sources += [ "os_crypt_util_linux_unittest.cc" ] 160 sources += [ "key_storage_libsecret_unittest.cc" ]
161 deps += [ "//third_party/libsecret" ] 161 deps += [ "//third_party/libsecret" ]
162 defines += [ "USE_LIBSECRET" ] 162 defines += [ "USE_LIBSECRET" ]
163 } 163 }
164 if (use_dbus) { 164 if (use_dbus) {
165 sources += [ 165 sources += [
166 "key_storage_kwallet_unittest.cc", 166 "key_storage_kwallet_unittest.cc",
167 "kwallet_dbus_unittest.cc", 167 "kwallet_dbus_unittest.cc",
168 ] 168 ]
169 deps += [ "//dbus:test_support" ] 169 deps += [ "//dbus:test_support" ]
170 defines += [ "USE_KWALLET" ] 170 defines += [ "USE_KWALLET" ]
171 } 171 }
172 } 172 }
173 } 173 }
OLDNEW
« no previous file with comments | « no previous file | components/os_crypt/key_storage_libsecret_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698