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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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!="android"', { | 136 ['OS!="android"', { |
137 'dependencies': [ | 137 'dependencies': [ |
| 138 'common_mojo_bindings', |
138 '../net/net.gyp:net_utility_services', | 139 '../net/net.gyp:net_utility_services', |
139 ], | 140 ], |
140 'sources': [ | 141 'sources': [ |
141 '<@(chrome_utility_importer_sources)', | 142 '<@(chrome_utility_importer_sources)', |
142 ], | 143 ], |
143 }], | 144 }], |
144 ['use_nss_certs==1', { | 145 ['use_nss_certs==1', { |
145 'dependencies': [ | 146 'dependencies': [ |
146 '../crypto/crypto.gyp:crypto', | 147 '../crypto/crypto.gyp:crypto', |
147 ], | 148 ], |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 'utility/local_discovery/service_discovery_message_handler.cc', | 201 'utility/local_discovery/service_discovery_message_handler.cc', |
201 'utility/local_discovery/service_discovery_message_handler.h', | 202 'utility/local_discovery/service_discovery_message_handler.h', |
202 ] | 203 ] |
203 }], | 204 }], |
204 ], | 205 ], |
205 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 206 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
206 'msvs_disabled_warnings': [ 4267, ], | 207 'msvs_disabled_warnings': [ 4267, ], |
207 }, | 208 }, |
208 ], | 209 ], |
209 } | 210 } |
OLD | NEW |