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

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: Added Linux implementation. Created 6 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 | Annotate | Revision Log
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 '../net/net.gyp:net',
13 '../crypto/crypto.gyp:crypto',
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/chromeos/cert_database_service_io_part_chromeos.cc',
19 'os_crypt/ie7_password_win.h', 20 'cert_database/linux/cert_database_service_io_part_linux.cc',
mattm 2014/09/05 07:35:29 not in CL
pneubeck (no reviews) 2014/09/05 08:04:56 Done.
20 'os_crypt/keychain_password_mac.h', 21 'cert_database/core/cert_database_service.cc',
21 'os_crypt/keychain_password_mac.mm', 22 'cert_database/core/cert_database_service_io_part.cc',
22 'os_crypt/os_crypt.h', 23 'cert_database/public/cert_database_service.h',
23 'os_crypt/os_crypt_mac.mm', 24 'cert_database/public/cert_database_service_io_part.h',
24 'os_crypt/os_crypt_posix.cc', 25 'cert_database/public/chromeos/cert_database_service_io_part_chromeos.h' ,
25 'os_crypt/os_crypt_switches.cc', 26 'cert_database/public/linux/cert_database_service_io_part_linux.h',
mattm 2014/09/05 07:35:29 these 2 not in CL
pneubeck (no reviews) 2014/09/05 08:04:56 Grmpf... added.
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/linux/cert_database_service_io_part_linux.cc' ],
33 ], 32 }, { # chromeos==0
34 }], 33 'sources!': [
35 ], 34 'cert_database/chromeos/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

Powered by Google App Engine
This is Rietveld 408576698