OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 '..', | 237 '..', |
238 '<(grit_out_dir)', | 238 '<(grit_out_dir)', |
239 ], | 239 ], |
240 }, | 240 }, |
241 { | 241 { |
242 'target_name': 'utility', | 242 'target_name': 'utility', |
243 'type': 'static_library', | 243 'type': 'static_library', |
244 'variables': { 'enable_wexit_time_destructors': 1, }, | 244 'variables': { 'enable_wexit_time_destructors': 1, }, |
245 'dependencies': [ | 245 'dependencies': [ |
246 '../base/base.gyp:base', | 246 '../base/base.gyp:base', |
| 247 '../components/components.gyp:onc_component', |
247 '../content/content.gyp:content_utility', | 248 '../content/content.gyp:content_utility', |
248 '../media/media.gyp:media', | 249 '../media/media.gyp:media', |
249 '../skia/skia.gyp:skia', | 250 '../skia/skia.gyp:skia', |
250 '../third_party/libxml/libxml.gyp:libxml', | 251 '../third_party/libxml/libxml.gyp:libxml', |
251 'common', | 252 'common', |
252 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 253 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
253 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 254 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
254 ], | 255 ], |
255 'sources': [ | 256 'sources': [ |
256 'utility/chrome_content_utility_client.cc', | 257 'utility/chrome_content_utility_client.cc', |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 'utility/media_galleries/pmp_column_reader.cc', | 316 'utility/media_galleries/pmp_column_reader.cc', |
316 'utility/media_galleries/pmp_column_reader.h', | 317 'utility/media_galleries/pmp_column_reader.h', |
317 ], | 318 ], |
318 }], | 319 }], |
319 ['OS=="mac"', { | 320 ['OS=="mac"', { |
320 'sources': [ | 321 'sources': [ |
321 'utility/media_galleries/iphoto_library_parser.cc', | 322 'utility/media_galleries/iphoto_library_parser.cc', |
322 'utility/media_galleries/iphoto_library_parser.h', | 323 'utility/media_galleries/iphoto_library_parser.h', |
323 ], | 324 ], |
324 }], | 325 }], |
| 326 ['OS=="win"', { |
| 327 'sources': [ |
| 328 'utility/networking_private_handler.cc', |
| 329 'utility/networking_private_handler.h', |
| 330 'utility/wifi/wifi_service.h', |
| 331 'utility/wifi/wifi_service.cc', |
| 332 'utility/wifi/wifi_service_mock.cc', |
| 333 ], |
| 334 }], |
325 ['use_openssl==1', { | 335 ['use_openssl==1', { |
326 'sources!': [ | 336 'sources!': [ |
327 'utility/importer/nss_decryptor.cc', | 337 'utility/importer/nss_decryptor.cc', |
328 ] | 338 ] |
329 }], | 339 }], |
330 ['OS!="win" and OS!="mac" and use_openssl==0', { | 340 ['OS!="win" and OS!="mac" and use_openssl==0', { |
331 'dependencies': [ | 341 'dependencies': [ |
332 '../crypto/crypto.gyp:crypto', | 342 '../crypto/crypto.gyp:crypto', |
333 ], | 343 ], |
334 'sources': [ | 344 'sources': [ |
(...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1171 'sources': [ | 1181 'sources': [ |
1172 'service/cloud_print/print_system_cups.cc', | 1182 'service/cloud_print/print_system_cups.cc', |
1173 ], | 1183 ], |
1174 }], | 1184 }], |
1175 ], | 1185 ], |
1176 }, | 1186 }, |
1177 ], | 1187 ], |
1178 }], | 1188 }], |
1179 ], # 'conditions' | 1189 ], # 'conditions' |
1180 } | 1190 } |
OLD | NEW |