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

Side by Side Diff: runtime/embedders/openglui/openglui_embedder.gypi

Issue 12212074: Support for non-DOM canvases/contexts (backed by bitaps). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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) 2013, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['OS=="android"', 7 ['OS=="android"',
8 { 8 {
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 { 134 {
135 'target_name': 'skia-android', 135 'target_name': 'skia-android',
136 'type': 'none', 136 'type': 'none',
137 'actions': [ 137 'actions': [
138 { 138 {
139 'action_name': 'build_skia', 139 'action_name': 'build_skia',
140 'inputs': [ 140 'inputs': [
141 'build_skia.sh' 141 'build_skia.sh'
142 ], 142 ],
143 'outputs': [ 143 'outputs': [
144 '../../../third_party/skia/trunk/out/config/android-x86/Debug/ libskia_core.a' 144 'dummy' # To force re-execution every time.
145 ], 145 ],
146 # For now we drive the build from a shell
147 # script, to get us going. Eventually we will
148 # want to either fork Skia or incorporate its
149 # gclient settings into ours, and include its
150 # gyp files within ours, so that it gets built
151 # as part of our tree.
146 'action': [ 152 'action': [
147 'embedders/openglui/build_skia.sh', 153 'embedders/openglui/build_skia.sh',
148 '--android', 154 '--android',
149 '..' 155 '..'
150 ], 156 ],
151 'message': 'Building Skia.' 157 'message': 'Building Skia.'
152 } 158 }
153 ] 159 ]
154 } 160 }
155 ], 161 ],
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 { 266 {
261 'target_name': 'skia-desktop', 267 'target_name': 'skia-desktop',
262 'type': 'none', 268 'type': 'none',
263 'actions': [ 269 'actions': [
264 { 270 {
265 'action_name': 'build_skia', 271 'action_name': 'build_skia',
266 'inputs': [ 272 'inputs': [
267 'build_skia.sh' 273 'build_skia.sh'
268 ], 274 ],
269 'outputs': [ 275 'outputs': [
270 '../../../third_party/skia/trunk/out/Debug/libskia_core.a' 276 'dummy' # To force re-execution every time.
271 ], 277 ],
272 'action': [ 278 'action': [
273 'embedders/openglui/build_skia.sh', 279 'embedders/openglui/build_skia.sh',
274 '..' 280 '..'
275 ], 281 ],
276 'message': 'Building Skia.' 282 'message': 'Building Skia.'
277 } 283 }
278 ] 284 ]
279 } 285 }
280 ], 286 ],
281 }, 287 },
282 ], 288 ],
283 ], 289 ],
284 } 290 }
285 291
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698