| 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', | 8 'target_name': 'content_shell', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 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 '../base/base.gyp:base', | 24 '../base/base.gyp:base', |
| 25 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 25 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 26 '../build/temp_gyp/googleurl.gyp:googleurl', | 26 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 27 '../ipc/ipc.gyp:ipc', | 27 '../ipc/ipc.gyp:ipc', |
| 28 '../net/net.gyp:net', | 28 '../net/net.gyp:net', |
| 29 '../skia/skia.gyp:skia', | 29 '../skia/skia.gyp:skia', |
| 30 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 30 '../ui/ui.gyp:ui', | 31 '../ui/ui.gyp:ui', |
| 31 '../v8/tools/gyp/v8.gyp:v8', | 32 '../v8/tools/gyp/v8.gyp:v8', |
| 32 '../webkit/support/webkit_support.gyp:appcache', | 33 '../webkit/support/webkit_support.gyp:appcache', |
| 33 '../webkit/support/webkit_support.gyp:database', | 34 '../webkit/support/webkit_support.gyp:database', |
| 34 '../webkit/support/webkit_support.gyp:fileapi', | 35 '../webkit/support/webkit_support.gyp:fileapi', |
| 35 '../webkit/support/webkit_support.gyp:glue', | 36 '../webkit/support/webkit_support.gyp:glue', |
| 36 '../webkit/support/webkit_support.gyp:quota', | 37 '../webkit/support/webkit_support.gyp:quota', |
| 37 ], | 38 ], |
| 38 'include_dirs': [ | 39 'include_dirs': [ |
| 39 '..', | 40 '..', |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 111 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
| 111 }, | 112 }, |
| 112 }, | 113 }, |
| 113 }, | 114 }, |
| 114 }, | 115 }, |
| 115 }], | 116 }], |
| 116 ], | 117 ], |
| 117 }, | 118 }, |
| 118 ], | 119 ], |
| 119 } | 120 } |
| OLD | NEW |