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 'variables': { | 6 'variables': { |
7 'chrome_utility_sources': [ | 7 'chrome_utility_sources': [ |
8 'utility/chrome_content_utility_client.cc', | 8 'utility/chrome_content_utility_client.cc', |
9 'utility/chrome_content_utility_client.h', | 9 'utility/chrome_content_utility_client.h', |
10 'utility/chrome_content_utility_ipc_whitelist.cc', | 10 'utility/chrome_content_utility_ipc_whitelist.cc', |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 'common', | 113 'common', |
114 ], | 114 ], |
115 'include_dirs': [ | 115 'include_dirs': [ |
116 '..', | 116 '..', |
117 '<(grit_out_dir)', | 117 '<(grit_out_dir)', |
118 ], | 118 ], |
119 'sources': [ | 119 'sources': [ |
120 '<@(chrome_utility_sources)', | 120 '<@(chrome_utility_sources)', |
121 ], | 121 ], |
122 'conditions': [ | 122 'conditions': [ |
123 ['OS!="win" and OS!="mac" and use_openssl==1', { | 123 ['OS!="android"', { |
124 'sources!': [ | 124 'sources': [ |
125 'utility/importer/nss_decryptor.cc', | 125 '<@(chrome_utility_importer_sources)', |
126 ] | 126 ], |
127 }], | 127 }], |
128 ['OS!="win" and OS!="mac" and use_openssl==0', { | 128 ['use_nss==1', { |
129 'dependencies': [ | 129 'dependencies': [ |
130 '../crypto/crypto.gyp:crypto', | 130 '../crypto/crypto.gyp:crypto', |
131 ], | 131 ], |
132 'sources': [ | 132 'sources': [ |
133 'utility/importer/nss_decryptor_system_nss.cc', | 133 'utility/importer/nss_decryptor_system_nss.cc', |
134 'utility/importer/nss_decryptor_system_nss.h', | 134 'utility/importer/nss_decryptor_system_nss.h', |
135 ], | 135 ], |
136 }], | 136 }], |
137 ['OS!="android"', { | |
138 'sources': [ | |
139 '<@(chrome_utility_importer_sources)', | |
140 ], | |
141 }], | |
142 ['enable_extensions==1', { | 137 ['enable_extensions==1', { |
143 'dependencies': [ | 138 'dependencies': [ |
144 '../extensions/extensions.gyp:extensions_utility', | 139 '../extensions/extensions.gyp:extensions_utility', |
145 '../third_party/libexif/libexif.gyp:libexif', | 140 '../third_party/libexif/libexif.gyp:libexif', |
146 'common/extensions/api/api.gyp:chrome_api', | 141 'common/extensions/api/api.gyp:chrome_api', |
147 ], | 142 ], |
148 'export_dependent_settings': [ | 143 'export_dependent_settings': [ |
149 'common/extensions/api/api.gyp:chrome_api', | 144 'common/extensions/api/api.gyp:chrome_api', |
150 ], | 145 ], |
151 'sources': [ | 146 'sources': [ |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 }], | 181 }], |
187 ['safe_browsing==1', { | 182 ['safe_browsing==1', { |
188 'defines': [ 'FULL_SAFE_BROWSING' ], | 183 'defines': [ 'FULL_SAFE_BROWSING' ], |
189 }], | 184 }], |
190 ], | 185 ], |
191 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 186 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
192 'msvs_disabled_warnings': [ 4267, ], | 187 'msvs_disabled_warnings': [ 4267, ], |
193 }, | 188 }, |
194 ], | 189 ], |
195 } | 190 } |
OLD | NEW |