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

Side by Side Diff: components/os_crypt.gypi

Issue 2150543002: OSCrypt supports encryption with KWallet (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback 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 unified diff | Download patch
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'os_crypt', 8 'target_name': 'os_crypt',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 ], 72 ],
73 'include_dirs' : [ 73 'include_dirs' : [
74 '../third_party/libsecret/' 74 '../third_party/libsecret/'
75 ], 75 ],
76 'dependencies': [ 76 'dependencies': [
77 '../build/linux/system.gyp:glib', 77 '../build/linux/system.gyp:glib',
78 ], 78 ],
79 }], 79 }],
80 ['use_dbus==1', { 80 ['use_dbus==1', {
81 'sources': [ 81 'sources': [
82 'os_crypt/key_storage_kwallet.cc',
83 'os_crypt/key_storage_kwallet.h',
82 'os_crypt/kwallet_dbus.cc', 84 'os_crypt/kwallet_dbus.cc',
83 'os_crypt/kwallet_dbus.h', 85 'os_crypt/kwallet_dbus.h',
84 ], 86 ],
85 'defines': [ 87 'defines': [
86 'USE_KWALLET', 88 'USE_KWALLET',
87 ], 89 ],
88 'dependencies': [ 90 'dependencies': [
89 '../build/linux/system.gyp:dbus', 91 '../build/linux/system.gyp:dbus',
90 '../dbus/dbus.gyp:dbus', 92 '../dbus/dbus.gyp:dbus',
91 ], 93 ],
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 '../third_party/libsecret/' 131 '../third_party/libsecret/'
130 ], 132 ],
131 'dependencies': [ 133 'dependencies': [
132 '../build/linux/system.gyp:glib', 134 '../build/linux/system.gyp:glib',
133 ], 135 ],
134 }], 136 }],
135 ] 137 ]
136 } 138 }
137 ], 139 ],
138 } 140 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698