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

Side by Side Diff: Source/WebKit/chromium/WebKit.gyp

Issue 19856004: Adds WebElement::imageContents() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix webkit_test_support in static build, it needs to depend on skia so the SkBitma.h include works Created 7 years, 4 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 | « no previous file | Source/core/dom/Element.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2011 Google Inc. All rights reserved. 2 # Copyright (C) 2011 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 ], 235 ],
236 }, 236 },
237 { 237 {
238 'target_name': 'webkit_test_support', 238 'target_name': 'webkit_test_support',
239 'conditions': [ 239 'conditions': [
240 ['component=="shared_library"', { 240 ['component=="shared_library"', {
241 'type': 'none', 241 'type': 'none',
242 }, { 242 }, {
243 'type': 'static_library', 243 'type': 'static_library',
244 'dependencies': [ 244 'dependencies': [
245 '../../core/core.gyp:webcore_test_support',
245 '../../wtf/wtf.gyp:wtf', 246 '../../wtf/wtf.gyp:wtf',
246 '../../core/core.gyp:webcore_test_support', 247 '<(DEPTH)/skia/skia.gyp:skia',
247 ], 248 ],
248 'include_dirs': [ 249 'include_dirs': [
249 '../../../public/web', 250 '../../../public/web',
250 '../../core/testing/v8', # for WebCoreTestSupport.h, nee ded to link in window.internals code. 251 '../../core/testing/v8', # for WebCoreTestSupport.h, nee ded to link in window.internals code.
251 '../../../', 252 '../../../',
252 ], 253 ],
253 'sources': [ 254 'sources': [
254 '../../web/WebTestingSupport.cpp', 255 '../../web/WebTestingSupport.cpp',
255 ], 256 ],
256 }], 257 }],
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 ['clang==1', { 309 ['clang==1', {
309 'target_defaults': { 310 'target_defaults': {
310 'cflags': ['-Wglobal-constructors'], 311 'cflags': ['-Wglobal-constructors'],
311 'xcode_settings': { 312 'xcode_settings': {
312 'WARNING_CFLAGS': ['-Wglobal-constructors'], 313 'WARNING_CFLAGS': ['-Wglobal-constructors'],
313 }, 314 },
314 }, 315 },
315 }], 316 }],
316 ], # conditions 317 ], # conditions
317 } 318 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698