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

Side by Side Diff: ppapi/ppapi_gl.gypi

Issue 6461001: Revert 73222 - Make target running GLES2 autogen script.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | webkit/glue/webkit_glue.gypi » ('j') | 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 # This file was split off from ppapi.gyp to prevent PPAPI users from 6 # This file was split off from ppapi.gyp to prevent PPAPI users from
7 # needing to DEPS in ~10K files due to mesa. 7 # needing to DEPS in ~10K files due to mesa.
8 { 8 {
9 'includes': [ 9 'includes': [
10 '../third_party/mesa/mesa.gypi', 10 '../third_party/mesa/mesa.gypi',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ], 55 ],
56 'include_dirs': [ 56 'include_dirs': [
57 'lib/gl/include', 57 'lib/gl/include',
58 ], 58 ],
59 'sources': [ 59 'sources': [
60 'lib/gl/gles2/gl2ext_ppapi.c', 60 'lib/gl/gles2/gl2ext_ppapi.c',
61 'lib/gl/gles2/gl2ext_ppapi.h', 61 'lib/gl/gles2/gl2ext_ppapi.h',
62 'lib/gl/gles2/gles2.c', 62 'lib/gl/gles2/gles2.c',
63 ], 63 ],
64 }, 64 },
65 {
66 'target_name': 'ppapi_gles_bindings',
67 'type': 'none',
68 'suppress_wildcard': 1,
69 'actions': [
70 {
71 'action_name': 'generate_ppapi_gles_bindings',
72 'variables': {
73 'gles_script': '<(DEPTH)/gpu/command_buffer/build_gles2_cmd_buffer.py ',
74 },
75 'inputs': [
76 '<(gles_script)',
77 ],
78 'outputs': [
79 'c/dev/ppb_opengles_dev.h',
80 'lib/gl/gles2/gles2.c',
81 ],
82 'action': [
83 'python',
84 '<(gles_script)',
85 '--alternate-mode=ppapi'
86 ],
87 'message': 'Generating Pepper OpenGL ES bindings',
88 }],
89 },
90 ], 65 ],
91 } 66 }
OLDNEW
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698