| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'utility', | 8 'target_name': 'utility', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 13 '../components/components_strings.gyp:components_strings', | 13 '../components/components_strings.gyp:components_strings', |
| 14 '../components/components.gyp:url_fixer', |
| 14 '../content/content.gyp:content_common', | 15 '../content/content.gyp:content_common', |
| 15 '../content/content.gyp:content_utility', | 16 '../content/content.gyp:content_utility', |
| 16 '../media/media.gyp:media', | 17 '../media/media.gyp:media', |
| 17 '../skia/skia.gyp:skia', | 18 '../skia/skia.gyp:skia', |
| 18 '../third_party/libexif/libexif.gyp:libexif', | 19 '../third_party/libexif/libexif.gyp:libexif', |
| 19 '../third_party/libxml/libxml.gyp:libxml', | 20 '../third_party/libxml/libxml.gyp:libxml', |
| 20 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 21 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
| 21 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 22 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
| 22 'common', | 23 'common', |
| 23 'common/extensions/api/api.gyp:chrome_api', | 24 'common/extensions/api/api.gyp:chrome_api', |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 'sources': [ | 144 'sources': [ |
| 144 'utility/image_writer/image_writer_stub.cc', | 145 'utility/image_writer/image_writer_stub.cc', |
| 145 ] | 146 ] |
| 146 }], | 147 }], |
| 147 ], | 148 ], |
| 148 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 149 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 149 'msvs_disabled_warnings': [ 4267, ], | 150 'msvs_disabled_warnings': [ 4267, ], |
| 150 }, | 151 }, |
| 151 ], | 152 ], |
| 152 } | 153 } |
| OLD | NEW |