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

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

Issue 12212007: cc: Route offscreen context creation for compositor to the browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo Created 7 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 | 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 17 matching lines...) Expand all
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 'gl_bindings_skia_cmd_buffer.cc', 36 'gl_bindings_skia_cmd_buffer.cc',
37 'gl_bindings_skia_cmd_buffer.h', 37 'gl_bindings_skia_cmd_buffer.h',
38 'grcontext_for_webgraphicscontext3d.cc',
39 'grcontext_for_webgraphicscontext3d.h',
38 'webgraphicscontext3d_in_process_command_buffer_impl.cc', 40 'webgraphicscontext3d_in_process_command_buffer_impl.cc',
39 'webgraphicscontext3d_in_process_command_buffer_impl.h', 41 'webgraphicscontext3d_in_process_command_buffer_impl.h',
40 'webgraphicscontext3d_in_process_impl.cc', 42 'webgraphicscontext3d_in_process_impl.cc',
41 'webgraphicscontext3d_in_process_impl.h', 43 'webgraphicscontext3d_in_process_impl.h',
42 'webkit_gpu.gypi', 44 'webkit_gpu.gypi',
43 ], 45 ],
44 'conditions': [ 46 'conditions': [
45 ['inside_chromium_build==0', { 47 ['inside_chromium_build==0', {
46 'dependencies': [ 48 'dependencies': [
47 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 49 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
48 ], 50 ],
49 }], 51 }],
50 ], 52 ],
51 'defines': [ 53 'defines': [
52 'WEBKIT_GPU_IMPLEMENTATION', 54 'WEBKIT_GPU_IMPLEMENTATION',
53 ], 55 ],
54 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 56 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
55 'msvs_disabled_warnings': [ 4267, ], 57 'msvs_disabled_warnings': [ 4267, ],
56 }, 58 },
57 ], 59 ],
58 } 60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698