| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'content_shell_lib', | 8 'target_name': 'content_shell_lib', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
| 11 'variables': { | 11 'variables': { |
| 12 'chromium_code': 1, | 12 'chromium_code': 1, |
| 13 }, | 13 }, |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 'content_app', | 15 'content_app', |
| 16 'content_browser', | 16 'content_browser', |
| 17 'content_common', | 17 'content_common', |
| 18 'content_gpu', | 18 'content_gpu', |
| 19 'content_plugin', | 19 'content_plugin', |
| 20 'content_ppapi_plugin', | 20 'content_ppapi_plugin', |
| 21 'content_renderer', | 21 'content_renderer', |
| 22 'content_shell_resources', | 22 'content_shell_resources', |
| 23 'content_utility', | 23 'content_utility', |
| 24 'content_worker', | 24 'content_worker', |
| 25 'content_resources.gyp:content_resources', | 25 'content_resources.gyp:content_resources', |
| 26 '../base/base.gyp:base', | 26 '../base/base.gyp:base', |
| 27 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 27 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 28 '../build/temp_gyp/googleurl.gyp:googleurl', | 28 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 29 '../ipc/ipc.gyp:ipc', | 29 '../ipc/ipc.gyp:ipc', |
| 30 '../media/media.gyp:media', |
| 30 '../net/net.gyp:net', | 31 '../net/net.gyp:net', |
| 31 '../skia/skia.gyp:skia', | 32 '../skia/skia.gyp:skia', |
| 32 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 33 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 33 '../ui/ui.gyp:ui', | 34 '../ui/ui.gyp:ui', |
| 34 '../v8/tools/gyp/v8.gyp:v8', | 35 '../v8/tools/gyp/v8.gyp:v8', |
| 35 '../webkit/support/webkit_support.gyp:appcache', | 36 '../webkit/support/webkit_support.gyp:appcache', |
| 36 '../webkit/support/webkit_support.gyp:database', | 37 '../webkit/support/webkit_support.gyp:database', |
| 37 '../webkit/support/webkit_support.gyp:fileapi', | 38 '../webkit/support/webkit_support.gyp:fileapi', |
| 38 '../webkit/support/webkit_support.gyp:glue', | 39 '../webkit/support/webkit_support.gyp:glue', |
| 39 '../webkit/support/webkit_support.gyp:quota', | 40 '../webkit/support/webkit_support.gyp:quota', |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 }], | 239 }], |
| 239 ['toolkit_uses_gtk == 1', { | 240 ['toolkit_uses_gtk == 1', { |
| 240 'dependencies': [ | 241 'dependencies': [ |
| 241 '<(DEPTH)/build/linux/system.gyp:gtk', | 242 '<(DEPTH)/build/linux/system.gyp:gtk', |
| 242 ], | 243 ], |
| 243 }], | 244 }], |
| 244 ], | 245 ], |
| 245 }, | 246 }, |
| 246 ], | 247 ], |
| 247 } | 248 } |
| OLD | NEW |