| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 '<(grit_out_dir)', | 242 '<(grit_out_dir)', |
| 243 ], | 243 ], |
| 244 }, | 244 }, |
| 245 { | 245 { |
| 246 'target_name': 'utility', | 246 'target_name': 'utility', |
| 247 'type': 'static_library', | 247 'type': 'static_library', |
| 248 'variables': { 'enable_wexit_time_destructors': 1, }, | 248 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 249 'dependencies': [ | 249 'dependencies': [ |
| 250 '../base/base.gyp:base', | 250 '../base/base.gyp:base', |
| 251 '../content/content.gyp:content_utility', | 251 '../content/content.gyp:content_utility', |
| 252 '../media/media.gyp:media', |
| 252 '../skia/skia.gyp:skia', | 253 '../skia/skia.gyp:skia', |
| 253 '../third_party/libxml/libxml.gyp:libxml', | 254 '../third_party/libxml/libxml.gyp:libxml', |
| 254 'common', | 255 'common', |
| 255 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 256 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
| 256 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 257 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
| 257 ], | 258 ], |
| 258 'sources': [ | 259 'sources': [ |
| 259 'utility/chrome_content_utility_client.cc', | 260 'utility/chrome_content_utility_client.cc', |
| 260 'utility/chrome_content_utility_client.h', | 261 'utility/chrome_content_utility_client.h', |
| 261 'utility/extensions/unpacker.cc', | 262 'utility/extensions/unpacker.cc', |
| (...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1192 ], # 'targets' | 1193 ], # 'targets' |
| 1193 'includes': [ | 1194 'includes': [ |
| 1194 'chrome_android.gypi', | 1195 'chrome_android.gypi', |
| 1195 ]}, # 'includes' | 1196 ]}, # 'includes' |
| 1196 ], # OS=="android" | 1197 ], # OS=="android" |
| 1197 ['configuration_policy==1 and OS!="android"', { | 1198 ['configuration_policy==1 and OS!="android"', { |
| 1198 'includes': [ 'policy.gypi', ], | 1199 'includes': [ 'policy.gypi', ], |
| 1199 }], | 1200 }], |
| 1200 ], # 'conditions' | 1201 ], # 'conditions' |
| 1201 } | 1202 } |
| OLD | NEW |