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

Side by Side Diff: components/cert_database.gypi

Issue 419013003: Replace c/b/nss_context by a KeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Flattened components/cert_database folders. Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chromeos/tpm_token_loader.cc ('k') | components/cert_database/DEPS » ('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': 'cert_database',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [
11 '../base/base.gyp:base',
12 '../crypto/crypto.gyp:crypto',
13 '../net/net.gyp:net',
14 ],
10 'include_dirs': [ 15 'include_dirs': [
11 '..', 16 '..',
12 ], 17 ],
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../crypto/crypto.gyp:crypto',
16 ],
17 'sources': [ 18 'sources': [
18 'os_crypt/ie7_password_win.cc', 19 'cert_database/cert_database_service.cc',
19 'os_crypt/ie7_password_win.h', 20 'cert_database/cert_database_service.h',
20 'os_crypt/keychain_password_mac.h', 21 'cert_database/cert_database_service_io_part.cc',
21 'os_crypt/keychain_password_mac.mm', 22 'cert_database/cert_database_service_io_part.h',
22 'os_crypt/os_crypt.h', 23 'cert_database/cert_database_service_io_part_chromeos.cc',
23 'os_crypt/os_crypt_mac.mm', 24 'cert_database/cert_database_service_io_part_chromeos.h',
24 'os_crypt/os_crypt_posix.cc', 25 'cert_database/cert_database_service_io_part_linux.cc',
25 'os_crypt/os_crypt_switches.cc', 26 'cert_database/cert_database_service_io_part_linux.h',
26 'os_crypt/os_crypt_switches.h',
27 'os_crypt/os_crypt_win.cc',
28 ], 27 ],
29 'conditions': [ 28 'conditions': [
30 ['OS=="mac"', { 29 ['chromeos==1', {
31 'sources!': [ 30 'sources!': [
32 'os_crypt/os_crypt_posix.cc', 31 'cert_database/cert_database_service_io_part_linux.cc' ],
33 ], 32 }, { # chromeos==0
34 }], 33 'sources!': [
35 ], 34 'cert_database/cert_database_service_io_part_chromeos.cc'
36 'target_conditions': [ 35 ],
37 ['OS=="ios"', { 36 }],
38 'sources/': [
39 ['include', '^os_crypt/keychain_password_mac\\.mm$'],
40 ['include', '^os_crypt/os_crypt_mac\\.mm$'],
41 ],
42 }],
43 ], 37 ],
44 }, 38 },
45 ], 39 ],
46 } 40 }
OLDNEW
« no previous file with comments | « chromeos/tpm_token_loader.cc ('k') | components/cert_database/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698