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

Side by Side Diff: webkit/webkit.gyp

Issue 155010: Port WebImage to CG and rework the Skia version so that WebImage just has a... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « webkit/glue/webclipboard_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_CHANNEL_MESSAGING=1', 8 'ENABLE_CHANNEL_MESSAGING=1',
9 'ENABLE_DATABASE=1', 9 'ENABLE_DATABASE=1',
10 'ENABLE_DATAGRID=1', 10 'ENABLE_DATAGRID=1',
(...skipping 4252 matching lines...) Expand 10 before | Expand all | Expand 10 after
4263 'api/src/MediaPlayerPrivateChromium.cpp', 4263 'api/src/MediaPlayerPrivateChromium.cpp',
4264 'api/src/ResourceHandle.cpp', 4264 'api/src/ResourceHandle.cpp',
4265 'api/src/TemporaryGlue.h', 4265 'api/src/TemporaryGlue.h',
4266 'api/src/WebCache.cpp', 4266 'api/src/WebCache.cpp',
4267 'api/src/WebCString.cpp', 4267 'api/src/WebCString.cpp',
4268 'api/src/WebData.cpp', 4268 'api/src/WebData.cpp',
4269 'api/src/WebDragData.cpp', 4269 'api/src/WebDragData.cpp',
4270 'api/src/WebForm.cpp', 4270 'api/src/WebForm.cpp',
4271 'api/src/WebHistoryItem.cpp', 4271 'api/src/WebHistoryItem.cpp',
4272 'api/src/WebHTTPBody.cpp', 4272 'api/src/WebHTTPBody.cpp',
4273 'api/src/WebImageCG.cpp',
4273 'api/src/WebImageSkia.cpp', 4274 'api/src/WebImageSkia.cpp',
4274 'api/src/WebInputEvent.cpp', 4275 'api/src/WebInputEvent.cpp',
4275 'api/src/WebKit.cpp', 4276 'api/src/WebKit.cpp',
4276 'api/src/WebMediaPlayerClientImpl.cpp', 4277 'api/src/WebMediaPlayerClientImpl.cpp',
4277 'api/src/WebMediaPlayerClientImpl.h', 4278 'api/src/WebMediaPlayerClientImpl.h',
4278 'api/src/WebPluginListBuilderImpl.cpp', 4279 'api/src/WebPluginListBuilderImpl.cpp',
4279 'api/src/WebPluginListBuilderImpl.h', 4280 'api/src/WebPluginListBuilderImpl.h',
4280 'api/src/WebString.cpp', 4281 'api/src/WebString.cpp',
4281 'api/src/WebURL.cpp', 4282 'api/src/WebURL.cpp',
4282 'api/src/WebURLRequest.cpp', 4283 'api/src/WebURLRequest.cpp',
(...skipping 20 matching lines...) Expand all
4303 }, { # else: OS!="linux" 4304 }, { # else: OS!="linux"
4304 'sources/': [ 4305 'sources/': [
4305 ['exclude', '/gtk/'], 4306 ['exclude', '/gtk/'],
4306 ['exclude', '/x11/'], 4307 ['exclude', '/x11/'],
4307 ], 4308 ],
4308 }], 4309 }],
4309 ['OS=="mac"', { 4310 ['OS=="mac"', {
4310 'include_dirs': [ 4311 'include_dirs': [
4311 'api/public/mac', 4312 'api/public/mac',
4312 ], 4313 ],
4313 'sources!': [ 4314 'sources/': [
4314 'api/src/WebImageSkia.cpp', 4315 ['exclude', 'Skia\\.cpp$'],
4315 ], 4316 ],
4316 }, { # else: OS!="mac" 4317 }, { # else: OS!="mac"
4317 'sources/': [['exclude', '/mac/']], 4318 'sources/': [
4319 ['exclude', '/mac/'],
4320 ['exclude', 'CG\\.cpp$'],
4321 ],
4318 }], 4322 }],
4319 ['OS=="win"', { 4323 ['OS=="win"', {
4320 'include_dirs': [ 4324 'include_dirs': [
4321 'api/public/win', 4325 'api/public/win',
4322 ], 4326 ],
4323 }, { # else: OS!="win" 4327 }, { # else: OS!="win"
4324 'sources/': [['exclude', '/win/']], 4328 'sources/': [['exclude', '/win/']],
4325 }], 4329 }],
4326 ], 4330 ],
4327 }, 4331 },
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
4885 '../third_party/WebKit/WebCore/inspector/front-end/Images/userInputP reviousIcon.png', 4889 '../third_party/WebKit/WebCore/inspector/front-end/Images/userInputP reviousIcon.png',
4886 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningIco n.png', 4890 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningIco n.png',
4887 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningMed iumIcon.png', 4891 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningMed iumIcon.png',
4888 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningsEr rors.png', 4892 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningsEr rors.png',
4889 ], 4893 ],
4890 }, 4894 },
4891 ], 4895 ],
4892 }, 4896 },
4893 ], 4897 ],
4894 } 4898 }
OLDNEW
« no previous file with comments | « webkit/glue/webclipboard_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698