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

Side by Side Diff: components/os_crypt.gypi

Issue 1934193002: Add system.gyp:glib as dependency to os_crypt.gypi (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update the gn file 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
« no previous file with comments | « no previous file | components/os_crypt/BUILD.gn » ('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 { 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'sources': [ 54 'sources': [
55 'os_crypt/libsecret_util_posix.cc', 55 'os_crypt/libsecret_util_posix.cc',
56 'os_crypt/libsecret_util_posix.h', 56 'os_crypt/libsecret_util_posix.h',
57 ], 57 ],
58 'defines': [ 58 'defines': [
59 'USE_LIBSECRET', 59 'USE_LIBSECRET',
60 ], 60 ],
61 'include_dirs' : [ 61 'include_dirs' : [
62 '../third_party/libsecret/' 62 '../third_party/libsecret/'
63 ], 63 ],
64 'dependencies': [
65 '../build/linux/system.gyp:glib',
66 ],
64 }], 67 }],
65 ], 68 ],
66 'target_conditions': [ 69 'target_conditions': [
67 ['OS=="ios"', { 70 ['OS=="ios"', {
68 'sources/': [ 71 'sources/': [
69 ['include', '^os_crypt/keychain_password_mac\\.mm$'], 72 ['include', '^os_crypt/keychain_password_mac\\.mm$'],
70 ['include', '^os_crypt/os_crypt_mac\\.mm$'], 73 ['include', '^os_crypt/os_crypt_mac\\.mm$'],
71 ], 74 ],
72 }], 75 }],
73 ], 76 ],
74 }, 77 },
75 ], 78 ],
76 } 79 }
OLDNEW
« no previous file with comments | « no previous file | components/os_crypt/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698