OLD | NEW |
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 }, | 43 }, |
44 }, | 44 }, |
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 and (use_glib==1 or use_dbus==1)', { | 53 ['OS=="linux" and chromeos!=1 and (use_glib==1)', { |
54 'sources': [ | 54 'sources': [ |
55 'os_crypt/key_storage_linux.cc', | 55 'os_crypt/key_storage_linux.cc', |
56 'os_crypt/key_storage_linux.h', | 56 'os_crypt/key_storage_linux.h', |
57 'os_crypt/os_crypt_linux.cc', | 57 'os_crypt/os_crypt_linux.cc', |
58 ], | 58 ], |
59 'sources!': [ | 59 'sources!': [ |
60 'os_crypt/os_crypt_posix.cc', | 60 'os_crypt/os_crypt_posix.cc', |
61 ], | 61 ], |
62 'conditions': [ | 62 'conditions': [ |
63 ['use_glib==1', { | 63 ['use_glib==1', { |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 '../third_party/libsecret/' | 129 '../third_party/libsecret/' |
130 ], | 130 ], |
131 'dependencies': [ | 131 'dependencies': [ |
132 '../build/linux/system.gyp:glib', | 132 '../build/linux/system.gyp:glib', |
133 ], | 133 ], |
134 }], | 134 }], |
135 ] | 135 ] |
136 } | 136 } |
137 ], | 137 ], |
138 } | 138 } |
OLD | NEW |