Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: webkit/webkit.gyp

Issue 27196: Add webkit.gyp:webkit target. (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'variables': { 6 'variables': {
7 'feature_defines': [ 7 'feature_defines': [
8 'ENABLE_DATABASE=1', 8 'ENABLE_DATABASE=1',
9 'ENABLE_DASHBOARD_SUPPORT=0', 9 'ENABLE_DASHBOARD_SUPPORT=0',
10 'ENABLE_JAVASCRIPT_DEBUGGER=0', 10 'ENABLE_JAVASCRIPT_DEBUGGER=0',
(...skipping 3175 matching lines...) Expand 10 before | Expand all | Expand 10 after
3186 '../third_party/WebKit/WebCore/rendering/SVGInlineTextBox.h', 3186 '../third_party/WebKit/WebCore/rendering/SVGInlineTextBox.h',
3187 '../third_party/WebKit/WebCore/rendering/SVGRenderSupport.cpp', 3187 '../third_party/WebKit/WebCore/rendering/SVGRenderSupport.cpp',
3188 '../third_party/WebKit/WebCore/rendering/SVGRenderSupport.h', 3188 '../third_party/WebKit/WebCore/rendering/SVGRenderSupport.h',
3189 '../third_party/WebKit/WebCore/rendering/SVGRenderTreeAsText.cpp', 3189 '../third_party/WebKit/WebCore/rendering/SVGRenderTreeAsText.cpp',
3190 '../third_party/WebKit/WebCore/rendering/SVGRenderTreeAsText.h', 3190 '../third_party/WebKit/WebCore/rendering/SVGRenderTreeAsText.h',
3191 '../third_party/WebKit/WebCore/rendering/SVGRootInlineBox.cpp', 3191 '../third_party/WebKit/WebCore/rendering/SVGRootInlineBox.cpp',
3192 '../third_party/WebKit/WebCore/rendering/SVGRootInlineBox.h', 3192 '../third_party/WebKit/WebCore/rendering/SVGRootInlineBox.h',
3193 '../third_party/WebKit/WebCore/rendering/TableLayout.h', 3193 '../third_party/WebKit/WebCore/rendering/TableLayout.h',
3194 '../third_party/WebKit/WebCore/rendering/TextControlInnerElements.cpp', 3194 '../third_party/WebKit/WebCore/rendering/TextControlInnerElements.cpp',
3195 '../third_party/WebKit/WebCore/rendering/TextControlInnerElements.h', 3195 '../third_party/WebKit/WebCore/rendering/TextControlInnerElements.h',
3196 '../third_party/WebKit/WebCore/rendering/TransformState.cpp',
3197 '../third_party/WebKit/WebCore/rendering/TransformState.h',
3196 '../third_party/WebKit/WebCore/rendering/bidi.cpp', 3198 '../third_party/WebKit/WebCore/rendering/bidi.cpp',
3197 '../third_party/WebKit/WebCore/rendering/bidi.h', 3199 '../third_party/WebKit/WebCore/rendering/bidi.h',
3198 '../third_party/WebKit/WebCore/rendering/break_lines.cpp', 3200 '../third_party/WebKit/WebCore/rendering/break_lines.cpp',
3199 '../third_party/WebKit/WebCore/rendering/break_lines.h', 3201 '../third_party/WebKit/WebCore/rendering/break_lines.h',
3200 '../third_party/WebKit/WebCore/storage/ChangeVersionWrapper.cpp', 3202 '../third_party/WebKit/WebCore/storage/ChangeVersionWrapper.cpp',
3201 '../third_party/WebKit/WebCore/storage/ChangeVersionWrapper.h', 3203 '../third_party/WebKit/WebCore/storage/ChangeVersionWrapper.h',
3202 '../third_party/WebKit/WebCore/storage/Database.cpp', 3204 '../third_party/WebKit/WebCore/storage/Database.cpp',
3203 '../third_party/WebKit/WebCore/storage/Database.h', 3205 '../third_party/WebKit/WebCore/storage/Database.h',
3204 '../third_party/WebKit/WebCore/storage/DatabaseAuthorizer.cpp', 3206 '../third_party/WebKit/WebCore/storage/DatabaseAuthorizer.cpp',
3205 '../third_party/WebKit/WebCore/storage/DatabaseAuthorizer.h', 3207 '../third_party/WebKit/WebCore/storage/DatabaseAuthorizer.h',
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
4012 }], 4014 }],
4013 ['OS!="linux"', {'sources/': [['exclude', '(Gtk|Linux)\\.cpp$']]}], 4015 ['OS!="linux"', {'sources/': [['exclude', '(Gtk|Linux)\\.cpp$']]}],
4014 ['OS!="mac"', {'sources/': [['exclude', 'Mac\\.(cpp|mm?)$']]}], 4016 ['OS!="mac"', {'sources/': [['exclude', 'Mac\\.(cpp|mm?)$']]}],
4015 ['OS!="win"', {'sources/': [ 4017 ['OS!="win"', {'sources/': [
4016 ['exclude', 'Win\\.cpp$'], 4018 ['exclude', 'Win\\.cpp$'],
4017 ['exclude', '/(Windows|Uniscribe)[^/]*\\.cpp$'] 4019 ['exclude', '/(Windows|Uniscribe)[^/]*\\.cpp$']
4018 ]}], 4020 ]}],
4019 ], 4021 ],
4020 }, 4022 },
4021 { 4023 {
4024 'target_name': 'webkit',
4025 'type': 'static_library',
4026 'dependencies': [
4027 'webcore',
4028 ],
4029 'include_dirs': [
4030 '../third_party/WebKit/WebKit/chromium/public',
4031 ],
4032 'defines': [
4033 'WEBKIT_IMPLEMENTATION',
4034 ],
4035 'sources': [
4036 '../third_party/WebKit/WebKit/chromium/public/WebCString.h',
4037 '../third_party/WebKit/WebKit/chromium/public/WebClipboard.h',
4038 '../third_party/WebKit/WebKit/chromium/public/WebCommon.h',
4039 '../third_party/WebKit/WebKit/chromium/public/WebImage.h',
4040 '../third_party/WebKit/WebKit/chromium/public/WebKit.h',
4041 '../third_party/WebKit/WebKit/chromium/public/WebKitClient.h',
4042 '../third_party/WebKit/WebKit/chromium/public/WebPoint.h',
4043 '../third_party/WebKit/WebKit/chromium/public/WebRect.h',
4044 '../third_party/WebKit/WebKit/chromium/public/WebSize.h',
4045 '../third_party/WebKit/WebKit/chromium/public/WebString.h',
4046 '../third_party/WebKit/WebKit/chromium/public/WebURL.h',
4047 '../third_party/WebKit/WebKit/chromium/src/ChromiumBridge.cpp',
4048 '../third_party/WebKit/WebKit/chromium/src/WebCString.cpp',
4049 '../third_party/WebKit/WebKit/chromium/src/WebImageSkia.cpp',
4050 '../third_party/WebKit/WebKit/chromium/src/WebKit.cpp',
4051 '../third_party/WebKit/WebKit/chromium/src/WebKitPrivate.h',
4052 '../third_party/WebKit/WebKit/chromium/src/WebString.cpp',
4053 '../third_party/WebKit/WebKit/chromium/src/WebURL.cpp',
4054 ],
4055 'direct_dependent_settings': {
4056 'include_dirs': [
4057 '../third_party/WebKit/WebKit/chromium/public',
4058 ],
4059 },
4060 'conditions': [
4061 ['OS=="mac"', {
4062 'sources!': [
4063 '../third_party/WebKit/WebKit/chromium/src/WebImageSkia.cpp',
4064 ],
4065 }, { # else: OS!="mac"
4066 'defines': [
4067 'WEBKIT_USING_SKIA',
4068 ],
4069 'direct_dependent_settings': {
4070 'defines': [
4071 'WEBKIT_USING_SKIA',
4072 ],
4073 },
4074 }],
4075 ],
4076 },
4077 {
4022 'target_name': 'glue', 4078 'target_name': 'glue',
4023 'type': 'static_library', 4079 'type': 'static_library',
4024 'dependencies': [ 4080 'dependencies': [
4025 'webcore', 4081 'webcore',
4082 'webkit',
4026 '../net/net.gyp:net', 4083 '../net/net.gyp:net',
4027 ], 4084 ],
4028 'actions': [ 4085 'actions': [
4029 { 4086 {
4030 'action_name': 'webkit_version', 4087 'action_name': 'webkit_version',
4031 'inputs': [ 4088 'inputs': [
4032 'build/webkit_version.py', 4089 'build/webkit_version.py',
4033 '../third_party/WebKit/WebCore/Configurations/Version.xcconfig', 4090 '../third_party/WebKit/WebCore/Configurations/Version.xcconfig',
4034 ], 4091 ],
4035 'outputs': [ 4092 'outputs': [
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
4172 'glue/resource_loader_bridge.h', 4229 'glue/resource_loader_bridge.h',
4173 'glue/resource_type.h', 4230 'glue/resource_type.h',
4174 'glue/scoped_clipboard_writer_glue.h', 4231 'glue/scoped_clipboard_writer_glue.h',
4175 'glue/screen_info.h', 4232 'glue/screen_info.h',
4176 'glue/searchable_form_data.cc', 4233 'glue/searchable_form_data.cc',
4177 'glue/searchable_form_data.h', 4234 'glue/searchable_form_data.h',
4178 'glue/simple_clipboard_impl.cc', 4235 'glue/simple_clipboard_impl.cc',
4179 'glue/stacking_order_iterator.cc', 4236 'glue/stacking_order_iterator.cc',
4180 'glue/stacking_order_iterator.h', 4237 'glue/stacking_order_iterator.h',
4181 'glue/tools_proxy.h', 4238 'glue/tools_proxy.h',
4239 'glue/webclipboard_impl.cc',
4240 'glue/webclipboard_impl.h',
4182 'glue/webcursor.cc', 4241 'glue/webcursor.cc',
4183 'glue/webcursor.h', 4242 'glue/webcursor.h',
4184 'glue/webcursor_gtk.cc', 4243 'glue/webcursor_gtk.cc',
4185 'glue/webcursor_gtk_data.h', 4244 'glue/webcursor_gtk_data.h',
4186 'glue/webcursor_mac.mm', 4245 'glue/webcursor_mac.mm',
4187 'glue/webcursor_win.cc', 4246 'glue/webcursor_win.cc',
4188 'glue/webdatasource.h', 4247 'glue/webdatasource.h',
4189 'glue/webdatasource_impl.cc', 4248 'glue/webdatasource_impl.cc',
4190 'glue/webdatasource_impl.h', 4249 'glue/webdatasource_impl.h',
4191 'glue/webdocumentloader_impl.cc', 4250 'glue/webdocumentloader_impl.cc',
4192 'glue/webdocumentloader_impl.h', 4251 'glue/webdocumentloader_impl.h',
4193 'glue/webdropdata.cc', 4252 'glue/webdropdata.cc',
4194 'glue/webdropdata.h', 4253 'glue/webdropdata.h',
4195 'glue/weberror.h', 4254 'glue/weberror.h',
4196 'glue/weberror_impl.cc', 4255 'glue/weberror_impl.cc',
4197 'glue/weberror_impl.h', 4256 'glue/weberror_impl.h',
4198 'glue/webframe.h', 4257 'glue/webframe.h',
4199 'glue/webframe_impl.cc', 4258 'glue/webframe_impl.cc',
4200 'glue/webframe_impl.h', 4259 'glue/webframe_impl.h',
4201 'glue/webframeloaderclient_impl.cc', 4260 'glue/webframeloaderclient_impl.cc',
4202 'glue/webframeloaderclient_impl.h', 4261 'glue/webframeloaderclient_impl.h',
4203 'glue/webhistoryitem.h', 4262 'glue/webhistoryitem.h',
4204 'glue/webhistoryitem_impl.cc', 4263 'glue/webhistoryitem_impl.cc',
4205 'glue/webhistoryitem_impl.h', 4264 'glue/webhistoryitem_impl.h',
4206 'glue/webinputevent.h', 4265 'glue/webinputevent.h',
4207 'glue/webinputevent_linux.cc', 4266 'glue/webinputevent_linux.cc',
4208 'glue/webinputevent_mac.mm', 4267 'glue/webinputevent_mac.mm',
4209 'glue/webinputevent_win.cc', 4268 'glue/webinputevent_win.cc',
4269 'glue/webkit_client_impl.cc',
4270 'glue/webkit_client_impl.h',
4210 'glue/webkit_glue.cc', 4271 'glue/webkit_glue.cc',
4211 'glue/webkit_glue.h', 4272 'glue/webkit_glue.h',
4212 'glue/webkit_glue_gtk.cc', 4273 'glue/webkit_glue_gtk.cc',
4213 'glue/webkit_glue_mac.mm', 4274 'glue/webkit_glue_mac.mm',
4214 'glue/webkit_glue_win.cc', 4275 'glue/webkit_glue_win.cc',
4215 'glue/webmediaplayer.h', 4276 'glue/webmediaplayer.h',
4216 'glue/webmediaplayer_delegate.h', 4277 'glue/webmediaplayer_delegate.h',
4217 'glue/webmediaplayer_impl.cc', 4278 'glue/webmediaplayer_impl.cc',
4218 'glue/webmediaplayer_impl.h', 4279 'glue/webmediaplayer_impl.h',
4219 'glue/webplugin.h', 4280 'glue/webplugin.h',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
4277 'pending/AccessibleBase.cpp', 4338 'pending/AccessibleBase.cpp',
4278 'pending/AccessibleDocument.cpp', 4339 'pending/AccessibleDocument.cpp',
4279 ], 4340 ],
4280 }, { # else: OS=="win" 4341 }, { # else: OS=="win"
4281 'sources/': [['exclude', '_posix\\.cc$']], 4342 'sources/': [['exclude', '_posix\\.cc$']],
4282 }], 4343 }],
4283 ], 4344 ],
4284 }, 4345 },
4285 ], 4346 ],
4286 } 4347 }
OLDNEW
« webkit/tools/test_shell/test_shell.gyp ('K') | « webkit/tools/test_shell/test_shell.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698