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

Side by Side Diff: webkit/common/gpu/webkit_gpu.gyp

Issue 305643004: Reducing code duplication between WGC3D(InProcess)CommandBufferImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added WEBKIT_GPU_EXPORT Created 6 years, 6 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'conditions': [ 6 'conditions': [
7 # TODO(stuartmorgan): All dependencies from code built on iOS to 7 # TODO(stuartmorgan): All dependencies from code built on iOS to
8 # webkit/ should be removed, at which point this condition can be 8 # webkit/ should be removed, at which point this condition can be
9 # removed. 9 # removed.
10 ['OS != "ios"', { 10 ['OS != "ios"', {
(...skipping 19 matching lines...) Expand all
30 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 30 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
31 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 31 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
32 ], 32 ],
33 'sources': [ 33 'sources': [
34 # This list contains all .h and .cc in gpu except for test code. 34 # This list contains all .h and .cc in gpu except for test code.
35 'context_provider_in_process.cc', 35 'context_provider_in_process.cc',
36 'context_provider_in_process.h', 36 'context_provider_in_process.h',
37 'context_provider_web_context.h', 37 'context_provider_web_context.h',
38 'grcontext_for_webgraphicscontext3d.cc', 38 'grcontext_for_webgraphicscontext3d.cc',
39 'grcontext_for_webgraphicscontext3d.h', 39 'grcontext_for_webgraphicscontext3d.h',
40 'webgraphicscontext3d_impl.cc',
41 'webgraphicscontext3d_impl.h',
40 'webgraphicscontext3d_in_process_command_buffer_impl.cc', 42 'webgraphicscontext3d_in_process_command_buffer_impl.cc',
41 'webgraphicscontext3d_in_process_command_buffer_impl.h', 43 'webgraphicscontext3d_in_process_command_buffer_impl.h',
42 ], 44 ],
43 'defines': [ 45 'defines': [
44 'WEBKIT_GPU_IMPLEMENTATION', 46 'WEBKIT_GPU_IMPLEMENTATION',
45 ], 47 ],
46 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 48 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
47 'msvs_disabled_warnings': [ 4267, ], 49 'msvs_disabled_warnings': [ 4267, ],
48 }, 50 },
49 ], 51 ],
50 }], 52 }],
51 ], 53 ],
52 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698