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

Side by Side Diff: components/os_crypt.gypi

Issue 1973483002: OSCrypt for POSIX uses libsecret to store a randomised encryption key. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed lsan failure Created 4 years, 7 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 'msvs_settings': { 45 'msvs_settings': {
46 'VCLinkerTool': { 46 'VCLinkerTool': {
47 'AdditionalDependencies': [ 47 'AdditionalDependencies': [
48 'crypt32.lib', 48 'crypt32.lib',
49 ], 49 ],
50 }, 50 },
51 }, 51 },
52 }], 52 }],
53 ['OS=="linux" and chromeos!=1', { 53 ['OS=="linux" and chromeos!=1', {
54 'sources': [ 54 'sources': [
55 'os_crypt/libsecret_util_posix.cc', 55 'os_crypt/libsecret_util_linux.cc',
Lei Zhang 2016/05/18 22:38:15 Alphabetical order please.
cfroussios 2016/05/19 21:18:17 Done.
56 'os_crypt/libsecret_util_posix.h', 56 'os_crypt/libsecret_util_linux.h',
57 'os_crypt/key_storage_libsecret.cc',
58 'os_crypt/key_storage_libsecret.h',
59 'os_crypt/key_storage_linux.cc',
60 'os_crypt/key_storage_linux.h',
61 'os_crypt/key_storage_mock.cc',
Lei Zhang 2016/05/18 22:38:15 Is it possible to set up the code so that this is
cfroussios 2016/05/19 21:18:17 Done.
62 'os_crypt/key_storage_mock.h',
63 'os_crypt/os_crypt_linux.cc',
64 ],
65 'sources!': [
66 'os_crypt/os_crypt_posix.cc',
57 ], 67 ],
58 'defines': [ 68 'defines': [
59 'USE_LIBSECRET', 69 'USE_LIBSECRET',
60 ], 70 ],
61 'include_dirs' : [ 71 'include_dirs' : [
62 '../third_party/libsecret/' 72 '../third_party/libsecret/'
63 ], 73 ],
64 'dependencies': [ 74 'dependencies': [
65 '../build/linux/system.gyp:glib', 75 '../build/linux/system.gyp:glib',
66 ], 76 ],
67 }], 77 }],
68 ], 78 ],
69 'target_conditions': [ 79 'target_conditions': [
70 ['OS=="ios"', { 80 ['OS=="ios"', {
71 'sources/': [ 81 'sources/': [
72 ['include', '^os_crypt/keychain_password_mac\\.mm$'], 82 ['include', '^os_crypt/keychain_password_mac\\.mm$'],
73 ['include', '^os_crypt/os_crypt_mac\\.mm$'], 83 ['include', '^os_crypt/os_crypt_mac\\.mm$'],
74 ], 84 ],
75 }], 85 }],
76 ], 86 ],
77 }, 87 },
78 ], 88 ],
79 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698