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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 '../content/content.gyp:content_utility', | 254 '../content/content.gyp:content_utility', |
| 255 '../media/media.gyp:media', |
255 '../skia/skia.gyp:skia', | 256 '../skia/skia.gyp:skia', |
256 '../third_party/libxml/libxml.gyp:libxml', | 257 '../third_party/libxml/libxml.gyp:libxml', |
257 'common', | 258 'common', |
258 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 259 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
259 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 260 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
260 ], | 261 ], |
261 'sources': [ | 262 'sources': [ |
262 'utility/chrome_content_utility_client.cc', | 263 'utility/chrome_content_utility_client.cc', |
263 'utility/chrome_content_utility_client.h', | 264 'utility/chrome_content_utility_client.h', |
264 'utility/extensions/unpacker.cc', | 265 'utility/extensions/unpacker.cc', |
(...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1195 ], # 'targets' | 1196 ], # 'targets' |
1196 'includes': [ | 1197 'includes': [ |
1197 'chrome_android.gypi', | 1198 'chrome_android.gypi', |
1198 ]}, # 'includes' | 1199 ]}, # 'includes' |
1199 ], # OS=="android" | 1200 ], # OS=="android" |
1200 ['configuration_policy==1 and OS!="android"', { | 1201 ['configuration_policy==1 and OS!="android"', { |
1201 'includes': [ 'policy.gypi', ], | 1202 'includes': [ 'policy.gypi', ], |
1202 }], | 1203 }], |
1203 ], # 'conditions' | 1204 ], # 'conditions' |
1204 } | 1205 } |
OLD | NEW |