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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 '<(grit_out_dir)', | 230 '<(grit_out_dir)', |
231 ], | 231 ], |
232 }, | 232 }, |
233 { | 233 { |
234 'target_name': 'utility', | 234 'target_name': 'utility', |
235 'type': 'static_library', | 235 'type': 'static_library', |
236 'variables': { 'enable_wexit_time_destructors': 1, }, | 236 'variables': { 'enable_wexit_time_destructors': 1, }, |
237 'dependencies': [ | 237 'dependencies': [ |
238 'common/extensions/api/api.gyp:chrome_api', | 238 'common/extensions/api/api.gyp:chrome_api', |
239 '../base/base.gyp:base', | 239 '../base/base.gyp:base', |
240 '../components/components.gyp:wifi_component', | |
241 '../components/components_strings.gyp:components_strings', | 240 '../components/components_strings.gyp:components_strings', |
242 '../content/content.gyp:content_common', | 241 '../content/content.gyp:content_common', |
243 '../content/content.gyp:content_utility', | 242 '../content/content.gyp:content_utility', |
244 '../media/media.gyp:media', | 243 '../media/media.gyp:media', |
245 '../skia/skia.gyp:skia', | 244 '../skia/skia.gyp:skia', |
246 '../third_party/libexif/libexif.gyp:libexif', | 245 '../third_party/libexif/libexif.gyp:libexif', |
247 '../third_party/libxml/libxml.gyp:libxml', | 246 '../third_party/libxml/libxml.gyp:libxml', |
248 'common', | 247 'common', |
249 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 248 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
250 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 249 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 ], | 305 ], |
307 'include_dirs': [ | 306 'include_dirs': [ |
308 '..', | 307 '..', |
309 '<(grit_out_dir)', | 308 '<(grit_out_dir)', |
310 ], | 309 ], |
311 'export_dependent_settings': [ | 310 'export_dependent_settings': [ |
312 'common/extensions/api/api.gyp:chrome_api', | 311 'common/extensions/api/api.gyp:chrome_api', |
313 ], | 312 ], |
314 'conditions': [ | 313 'conditions': [ |
315 ['OS=="win" or OS=="mac"', { | 314 ['OS=="win" or OS=="mac"', { |
| 315 'dependencies': [ |
| 316 '../components/components.gyp:wifi_component', |
| 317 ], |
316 'sources': [ | 318 'sources': [ |
317 'utility/media_galleries/iapps_xml_utils.cc', | 319 'utility/media_galleries/iapps_xml_utils.cc', |
318 'utility/media_galleries/iapps_xml_utils.h', | 320 'utility/media_galleries/iapps_xml_utils.h', |
319 'utility/media_galleries/itunes_library_parser.cc', | 321 'utility/media_galleries/itunes_library_parser.cc', |
320 'utility/media_galleries/itunes_library_parser.h', | 322 'utility/media_galleries/itunes_library_parser.h', |
321 'utility/media_galleries/picasa_album_table_reader.cc', | 323 'utility/media_galleries/picasa_album_table_reader.cc', |
322 'utility/media_galleries/picasa_album_table_reader.h', | 324 'utility/media_galleries/picasa_album_table_reader.h', |
323 'utility/media_galleries/picasa_albums_indexer.cc', | 325 'utility/media_galleries/picasa_albums_indexer.cc', |
324 'utility/media_galleries/picasa_albums_indexer.h', | 326 'utility/media_galleries/picasa_albums_indexer.h', |
325 'utility/media_galleries/pmp_column_reader.cc', | 327 'utility/media_galleries/pmp_column_reader.cc', |
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1079 'sources': [ | 1081 'sources': [ |
1080 'service/cloud_print/print_system_dummy.cc', | 1082 'service/cloud_print/print_system_dummy.cc', |
1081 ], | 1083 ], |
1082 }], | 1084 }], |
1083 ], | 1085 ], |
1084 }, | 1086 }, |
1085 ], | 1087 ], |
1086 }], | 1088 }], |
1087 ], # 'conditions' | 1089 ], # 'conditions' |
1088 } | 1090 } |
OLD | NEW |