| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ], | 153 ], |
| 154 'sources': [ | 154 'sources': [ |
| 155 '<@(chrome_utility_importer_sources)', | 155 '<@(chrome_utility_importer_sources)', |
| 156 ], | 156 ], |
| 157 }], | 157 }], |
| 158 ['OS=="android" and use_seccomp_bpf==1', { |
| 159 'dependencies': [ |
| 160 '../sandbox/sandbox.gyp:seccomp_bpf', |
| 161 ], |
| 162 'defines': ['USE_SECCOMP_BPF'], |
| 163 }], |
| 158 ['enable_extensions==1', { | 164 ['enable_extensions==1', { |
| 159 'dependencies': [ | 165 'dependencies': [ |
| 160 '../extensions/extensions.gyp:extensions_utility', | 166 '../extensions/extensions.gyp:extensions_utility', |
| 161 '../third_party/libexif/libexif.gyp:libexif', | 167 '../third_party/libexif/libexif.gyp:libexif', |
| 162 'common/extensions/api/api.gyp:chrome_api', | 168 'common/extensions/api/api.gyp:chrome_api', |
| 163 ], | 169 ], |
| 164 'export_dependent_settings': [ | 170 'export_dependent_settings': [ |
| 165 'common/extensions/api/api.gyp:chrome_api', | 171 'common/extensions/api/api.gyp:chrome_api', |
| 166 ], | 172 ], |
| 167 'sources': [ | 173 'sources': [ |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 }], | 208 }], |
| 203 ['safe_browsing==1', { | 209 ['safe_browsing==1', { |
| 204 'defines': [ 'FULL_SAFE_BROWSING' ], | 210 'defines': [ 'FULL_SAFE_BROWSING' ], |
| 205 }], | 211 }], |
| 206 ], | 212 ], |
| 207 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 213 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 208 'msvs_disabled_warnings': [ 4267, ], | 214 'msvs_disabled_warnings': [ 4267, ], |
| 209 }, | 215 }, |
| 210 ], | 216 ], |
| 211 } | 217 } |
| OLD | NEW |