| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 '..', | 244 '..', |
| 245 '<(grit_out_dir)', | 245 '<(grit_out_dir)', |
| 246 ], | 246 ], |
| 247 }, | 247 }, |
| 248 { | 248 { |
| 249 'target_name': 'utility', | 249 'target_name': 'utility', |
| 250 'type': 'static_library', | 250 'type': 'static_library', |
| 251 'variables': { 'enable_wexit_time_destructors': 1, }, | 251 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 252 'dependencies': [ | 252 'dependencies': [ |
| 253 '../base/base.gyp:base', | 253 '../base/base.gyp:base', |
| 254 '../components/components.gyp:onc_component', |
| 254 '../content/content.gyp:content_utility', | 255 '../content/content.gyp:content_utility', |
| 255 '../media/media.gyp:media', | 256 '../media/media.gyp:media', |
| 256 '../skia/skia.gyp:skia', | 257 '../skia/skia.gyp:skia', |
| 257 '../third_party/libxml/libxml.gyp:libxml', | 258 '../third_party/libxml/libxml.gyp:libxml', |
| 258 'common', | 259 'common', |
| 259 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 260 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
| 260 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 261 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
| 261 ], | 262 ], |
| 262 'sources': [ | 263 'sources': [ |
| 263 'utility/chrome_content_utility_client.cc', | 264 'utility/chrome_content_utility_client.cc', |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 'utility/media_galleries/pmp_column_reader.cc', | 323 'utility/media_galleries/pmp_column_reader.cc', |
| 323 'utility/media_galleries/pmp_column_reader.h', | 324 'utility/media_galleries/pmp_column_reader.h', |
| 324 ], | 325 ], |
| 325 }], | 326 }], |
| 326 ['OS=="mac"', { | 327 ['OS=="mac"', { |
| 327 'sources': [ | 328 'sources': [ |
| 328 'utility/media_galleries/iphoto_library_parser.cc', | 329 'utility/media_galleries/iphoto_library_parser.cc', |
| 329 'utility/media_galleries/iphoto_library_parser.h', | 330 'utility/media_galleries/iphoto_library_parser.h', |
| 330 ], | 331 ], |
| 331 }], | 332 }], |
| 333 ['OS=="win"', { |
| 334 'sources': [ |
| 335 'utility/networking_private_handler.cc', |
| 336 'utility/networking_private_handler.h', |
| 337 'utility/wifi/wifi_service.h', |
| 338 'utility/wifi/wifi_service.cc', |
| 339 'utility/wifi/wifi_service_mock.cc', |
| 340 ], |
| 341 }], |
| 332 ['use_openssl==1', { | 342 ['use_openssl==1', { |
| 333 'sources!': [ | 343 'sources!': [ |
| 334 'utility/importer/nss_decryptor.cc', | 344 'utility/importer/nss_decryptor.cc', |
| 335 ] | 345 ] |
| 336 }], | 346 }], |
| 337 ['OS!="win" and OS!="mac" and use_openssl==0', { | 347 ['OS!="win" and OS!="mac" and use_openssl==0', { |
| 338 'dependencies': [ | 348 'dependencies': [ |
| 339 '../crypto/crypto.gyp:crypto', | 349 '../crypto/crypto.gyp:crypto', |
| 340 ], | 350 ], |
| 341 'sources': [ | 351 'sources': [ |
| (...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1178 'sources': [ | 1188 'sources': [ |
| 1179 'service/cloud_print/print_system_cups.cc', | 1189 'service/cloud_print/print_system_cups.cc', |
| 1180 ], | 1190 ], |
| 1181 }], | 1191 }], |
| 1182 ], | 1192 ], |
| 1183 }, | 1193 }, |
| 1184 ], | 1194 ], |
| 1185 }], | 1195 }], |
| 1186 ], # 'conditions' | 1196 ], # 'conditions' |
| 1187 } | 1197 } |
| OLD | NEW |