| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 ['OS!="win" and OS!="mac" and use_openssl==0', { | 141 ['OS!="win" and OS!="mac" and use_openssl==0', { |
| 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"', { | 150 ['OS!="android"', { |
| 151 'dependencies': [ |
| 152 '../net/net.gyp:net_utility_services', |
| 153 ], |
| 151 'sources': [ | 154 'sources': [ |
| 152 '<@(chrome_utility_importer_sources)', | 155 '<@(chrome_utility_importer_sources)', |
| 153 ], | 156 ], |
| 154 }], | 157 }], |
| 155 ['enable_extensions==1', { | 158 ['enable_extensions==1', { |
| 156 'dependencies': [ | 159 'dependencies': [ |
| 157 '../extensions/extensions.gyp:extensions_utility', | 160 '../extensions/extensions.gyp:extensions_utility', |
| 158 '../third_party/libexif/libexif.gyp:libexif', | 161 '../third_party/libexif/libexif.gyp:libexif', |
| 159 'common/extensions/api/api.gyp:chrome_api', | 162 'common/extensions/api/api.gyp:chrome_api', |
| 160 ], | 163 ], |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 }], | 202 }], |
| 200 ['safe_browsing==1', { | 203 ['safe_browsing==1', { |
| 201 'defines': [ 'FULL_SAFE_BROWSING' ], | 204 'defines': [ 'FULL_SAFE_BROWSING' ], |
| 202 }], | 205 }], |
| 203 ], | 206 ], |
| 204 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 207 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 205 'msvs_disabled_warnings': [ 4267, ], | 208 'msvs_disabled_warnings': [ 4267, ], |
| 206 }, | 209 }, |
| 207 ], | 210 ], |
| 208 } | 211 } |
| OLD | NEW |