| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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': [ | 151 'dependencies': [ |
| 152 '../net/net.gyp:net_utility_services', | 152 '../net/net.gyp:net_utility_services', |
| 153 '../services/image_decoder/image_decoder.gyp:services_image_decoder'
, |
| 153 ], | 154 ], |
| 154 'sources': [ | 155 'sources': [ |
| 155 '<@(chrome_utility_importer_sources)', | 156 '<@(chrome_utility_importer_sources)', |
| 156 ], | 157 ], |
| 157 }], | 158 }], |
| 158 ['OS=="android" and use_seccomp_bpf==1', { | 159 ['OS=="android" and use_seccomp_bpf==1', { |
| 159 'dependencies': [ | 160 'dependencies': [ |
| 160 '../sandbox/sandbox.gyp:seccomp_bpf', | 161 '../sandbox/sandbox.gyp:seccomp_bpf', |
| 161 ], | 162 ], |
| 162 'defines': ['USE_SECCOMP_BPF'], | 163 'defines': ['USE_SECCOMP_BPF'], |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 }], | 209 }], |
| 209 ['safe_browsing==1', { | 210 ['safe_browsing==1', { |
| 210 'defines': [ 'FULL_SAFE_BROWSING' ], | 211 'defines': [ 'FULL_SAFE_BROWSING' ], |
| 211 }], | 212 }], |
| 212 ], | 213 ], |
| 213 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 214 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 214 'msvs_disabled_warnings': [ 4267, ], | 215 'msvs_disabled_warnings': [ 4267, ], |
| 215 }, | 216 }, |
| 216 ], | 217 ], |
| 217 } | 218 } |
| OLD | NEW |