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

Side by Side Diff: ui/gfx/gl/gl.gyp

Issue 7981034: Compile gl/ and surface/ on Android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 3 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 | ui/gfx/gl/gl_bindings.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 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'targets': [ 10 'targets': [
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 '<(gl_binding_output_dir)/gl_bindings_autogen_wgl.h', 102 '<(gl_binding_output_dir)/gl_bindings_autogen_wgl.h',
103 ], 103 ],
104 'action': [ 104 'action': [
105 'python', 105 'python',
106 'generate_bindings.py', 106 'generate_bindings.py',
107 '<(gl_binding_output_dir)', 107 '<(gl_binding_output_dir)',
108 ], 108 ],
109 }, 109 },
110 ], 110 ],
111 'conditions': [ 111 'conditions': [
112 ['OS != "mac"', { 112 ['OS != "mac" and OS != "android"', {
113 'sources': [ 113 'sources': [
114 'egl_util.cc', 114 'egl_util.cc',
115 'egl_util.h', 115 'egl_util.h',
116 'gl_context_egl.cc', 116 'gl_context_egl.cc',
117 'gl_context_egl.h', 117 'gl_context_egl.h',
118 'gl_surface_egl.cc', 118 'gl_surface_egl.cc',
119 'gl_surface_egl.h', 119 'gl_surface_egl.h',
120 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', 120 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc',
121 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', 121 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h',
122 ], 122 ],
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 'link_settings': { 164 'link_settings': {
165 'libraries': [ 165 'libraries': [
166 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 166 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
167 ], 167 ],
168 }, 168 },
169 }], 169 }],
170 ], 170 ],
171 }, 171 },
172 ], 172 ],
173 } 173 }
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/gl/gl_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698