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

Side by Side Diff: components/webdata.gypi

Issue 26465006: Fix IE password import (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Renaming ie7_password to ie7_password_win Created 7 years, 2 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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': 'encryptor', 8 'target_name': 'encryptor',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '..', 11 '..',
12 ], 12 ],
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../crypto/crypto.gyp:crypto', 15 '../crypto/crypto.gyp:crypto',
16 ], 16 ],
17 'sources': [ 17 'sources': [
18 'webdata/encryptor/encryptor.h', 18 'webdata/encryptor/encryptor.h',
19 'webdata/encryptor/encryptor_mac.mm', 19 'webdata/encryptor/encryptor_mac.mm',
20 'webdata/encryptor/encryptor_password_mac.h', 20 'webdata/encryptor/encryptor_password_mac.h',
21 'webdata/encryptor/encryptor_password_mac.mm', 21 'webdata/encryptor/encryptor_password_mac.mm',
22 'webdata/encryptor/encryptor_posix.cc', 22 'webdata/encryptor/encryptor_posix.cc',
23 'webdata/encryptor/encryptor_win.cc', 23 'webdata/encryptor/encryptor_win.cc',
24 'webdata/encryptor/ie7_password.cc', 24 'webdata/encryptor/ie7_password_win.cc',
25 'webdata/encryptor/ie7_password.h', 25 'webdata/encryptor/ie7_password_win.h',
26 ], 26 ],
27 'conditions': [ 27 'conditions': [
28 ['OS!="win"', {
29 'sources!': [
30 'webdata/encryptor/ie7_password.cc'
31 ],
32 }],
33 ['OS=="mac"', { 28 ['OS=="mac"', {
34 'sources!': [ 29 'sources!': [
35 'webdata/encryptor/encryptor_posix.cc', 30 'webdata/encryptor/encryptor_posix.cc',
36 ], 31 ],
37 }], 32 }],
38 ], 33 ],
39 }, 34 },
40 { 35 {
41 'target_name': 'webdata_common', 36 'target_name': 'webdata_common',
42 'type': '<(component)', 37 'type': '<(component)',
(...skipping 23 matching lines...) Expand all
66 'webdata/common/web_data_service_base.cc', 61 'webdata/common/web_data_service_base.cc',
67 'webdata/common/web_data_service_base.h', 62 'webdata/common/web_data_service_base.h',
68 'webdata/common/web_data_service_consumer.h', 63 'webdata/common/web_data_service_consumer.h',
69 'webdata/common/webdata_constants.cc', 64 'webdata/common/webdata_constants.cc',
70 'webdata/common/webdata_constants.h', 65 'webdata/common/webdata_constants.h',
71 'webdata/common/webdata_export.h' 66 'webdata/common/webdata_export.h'
72 ], 67 ],
73 }, 68 },
74 ], 69 ],
75 } 70 }
OLDNEW
« no previous file with comments | « chrome/browser/webdata/web_data_service_win.cc ('k') | components/webdata/encryptor/ie7_password.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698