| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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_utility', | 22 'content_utility', |
| 23 'content_worker', | 23 'content_worker', |
| 24 'content_resources.gyp:content_resources', |
| 24 '../base/base.gyp:base', | 25 '../base/base.gyp:base', |
| 25 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 26 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 26 '../build/temp_gyp/googleurl.gyp:googleurl', | 27 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 27 '../ipc/ipc.gyp:ipc', | 28 '../ipc/ipc.gyp:ipc', |
| 28 '../net/net.gyp:net', | 29 '../net/net.gyp:net', |
| 29 '../skia/skia.gyp:skia', | 30 '../skia/skia.gyp:skia', |
| 30 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 31 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 31 '../ui/ui.gyp:ui', | 32 '../ui/ui.gyp:ui', |
| 32 '../v8/tools/gyp/v8.gyp:v8', | 33 '../v8/tools/gyp/v8.gyp:v8', |
| 33 '../webkit/support/webkit_support.gyp:appcache', | 34 '../webkit/support/webkit_support.gyp:appcache', |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 }], | 146 }], |
| 146 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { | 147 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { |
| 147 'dependencies': [ | 148 'dependencies': [ |
| 148 '../sandbox/sandbox.gyp:sandbox', | 149 '../sandbox/sandbox.gyp:sandbox', |
| 149 ], | 150 ], |
| 150 }], | 151 }], |
| 151 ], | 152 ], |
| 152 }, | 153 }, |
| 153 ], | 154 ], |
| 154 } | 155 } |
| OLD | NEW |