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

Side by Side Diff: webkit/gpu/webkit_gpu.gypi

Issue 12217099: Implement the Platform::sharedOffscreenGraphicsContext3D method. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Drop was_created Created 7 years, 9 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'conditions': [ 7 'conditions': [
8 ['inside_chromium_build==0', { 8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../../..', 9 'webkit_src_dir': '../../../../..',
10 },{ 10 },{
(...skipping 15 matching lines...) Expand all
26 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib', 26 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib',
27 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation', 27 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation',
28 '<(DEPTH)/skia/skia.gyp:skia', 28 '<(DEPTH)/skia/skia.gyp:skia',
29 '<(DEPTH)/third_party/angle/src/build_angle.gyp:translator_glsl', 29 '<(DEPTH)/third_party/angle/src/build_angle.gyp:translator_glsl',
30 '<(DEPTH)/ui/gl/gl.gyp:gl', 30 '<(DEPTH)/ui/gl/gl.gyp:gl',
31 '<(DEPTH)/ui/ui.gyp:ui', 31 '<(DEPTH)/ui/ui.gyp:ui',
32 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 32 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
33 ], 33 ],
34 'sources': [ 34 'sources': [
35 # This list contains all .h and .cc in gpu except for test code. 35 # This list contains all .h and .cc in gpu except for test code.
36 'context_provider_in_process.cc',
37 'context_provider_in_process.h',
36 'gl_bindings_skia_cmd_buffer.cc', 38 'gl_bindings_skia_cmd_buffer.cc',
37 'gl_bindings_skia_cmd_buffer.h', 39 'gl_bindings_skia_cmd_buffer.h',
38 'grcontext_for_webgraphicscontext3d.cc', 40 'grcontext_for_webgraphicscontext3d.cc',
39 'grcontext_for_webgraphicscontext3d.h', 41 'grcontext_for_webgraphicscontext3d.h',
42 'test_context_provider_factory.cc',
43 'test_context_provider_factory.h',
40 'webgraphicscontext3d_in_process_command_buffer_impl.cc', 44 'webgraphicscontext3d_in_process_command_buffer_impl.cc',
41 'webgraphicscontext3d_in_process_command_buffer_impl.h', 45 'webgraphicscontext3d_in_process_command_buffer_impl.h',
42 'webgraphicscontext3d_in_process_impl.cc', 46 'webgraphicscontext3d_in_process_impl.cc',
43 'webgraphicscontext3d_in_process_impl.h', 47 'webgraphicscontext3d_in_process_impl.h',
44 'webkit_gpu.gypi', 48 'webkit_gpu.gypi',
45 ], 49 ],
46 'conditions': [ 50 'conditions': [
47 ['inside_chromium_build==0', { 51 ['inside_chromium_build==0', {
48 'dependencies': [ 52 'dependencies': [
49 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 53 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
50 ], 54 ],
51 }], 55 }],
52 ], 56 ],
53 'defines': [ 57 'defines': [
54 'WEBKIT_GPU_IMPLEMENTATION', 58 'WEBKIT_GPU_IMPLEMENTATION',
55 ], 59 ],
56 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 60 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
57 'msvs_disabled_warnings': [ 4267, ], 61 'msvs_disabled_warnings': [ 4267, ],
58 }, 62 },
59 ], 63 ],
60 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698