| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 'VCLinkerTool': { | 126 'VCLinkerTool': { |
| 127 'DelayLoadDLLs': [ | 127 'DelayLoadDLLs': [ |
| 128 # Prevent wininet from loading in the renderer. | 128 # Prevent wininet from loading in the renderer. |
| 129 # http://crbug.com/460679 | 129 # http://crbug.com/460679 |
| 130 'wininet.dll', | 130 'wininet.dll', |
| 131 ], | 131 ], |
| 132 }, | 132 }, |
| 133 }, | 133 }, |
| 134 }, | 134 }, |
| 135 }], | 135 }], |
| 136 ['OS!="win" and OS!="mac" and use_openssl==1', { | 136 ['OS!="android"', { |
| 137 'sources!': [ | 137 'sources': [ |
| 138 'utility/importer/nss_decryptor.cc', | 138 '<@(chrome_utility_importer_sources)', |
| 139 ] | 139 ], |
| 140 }], | 140 }], |
| 141 ['OS!="win" and OS!="mac" and use_openssl==0', { | 141 ['use_nss==1', { |
| 142 'dependencies': [ | 142 'dependencies': [ |
| 143 '../crypto/crypto.gyp:crypto', | 143 '../crypto/crypto.gyp:crypto', |
| 144 ], | 144 ], |
| 145 'sources': [ | 145 'sources': [ |
| 146 'utility/importer/nss_decryptor_system_nss.cc', | 146 'utility/importer/nss_decryptor_system_nss.cc', |
| 147 'utility/importer/nss_decryptor_system_nss.h', | 147 'utility/importer/nss_decryptor_system_nss.h', |
| 148 ], | 148 ], |
| 149 }], | 149 }], |
| 150 ['OS!="android"', { | |
| 151 'sources': [ | |
| 152 '<@(chrome_utility_importer_sources)', | |
| 153 ], | |
| 154 }], | |
| 155 ['enable_extensions==1', { | 150 ['enable_extensions==1', { |
| 156 'dependencies': [ | 151 'dependencies': [ |
| 157 '../extensions/extensions.gyp:extensions_utility', | 152 '../extensions/extensions.gyp:extensions_utility', |
| 158 '../third_party/libexif/libexif.gyp:libexif', | 153 '../third_party/libexif/libexif.gyp:libexif', |
| 159 'common/extensions/api/api.gyp:chrome_api', | 154 'common/extensions/api/api.gyp:chrome_api', |
| 160 ], | 155 ], |
| 161 'export_dependent_settings': [ | 156 'export_dependent_settings': [ |
| 162 'common/extensions/api/api.gyp:chrome_api', | 157 'common/extensions/api/api.gyp:chrome_api', |
| 163 ], | 158 ], |
| 164 'sources': [ | 159 'sources': [ |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 }], | 194 }], |
| 200 ['safe_browsing==1', { | 195 ['safe_browsing==1', { |
| 201 'defines': [ 'FULL_SAFE_BROWSING' ], | 196 'defines': [ 'FULL_SAFE_BROWSING' ], |
| 202 }], | 197 }], |
| 203 ], | 198 ], |
| 204 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 199 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 205 'msvs_disabled_warnings': [ 4267, ], | 200 'msvs_disabled_warnings': [ 4267, ], |
| 206 }, | 201 }, |
| 207 ], | 202 ], |
| 208 } | 203 } |
| OLD | NEW |