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

Side by Side Diff: native_client_sdk/src/examples/api/graphics_3d/example.dsc

Issue 23838002: [NaCl SDK] Simplify graphics3d example. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 7 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 | native_client_sdk/src/examples/api/graphics_3d/example.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'],
3 'TARGETS': [ 3 'TARGETS': [
4 { 4 {
5 'NAME' : 'graphics_3d', 5 'NAME' : 'graphics_3d',
6 'TYPE' : 'main', 6 'TYPE' : 'main',
7 'SOURCES' : ['graphics_3d.cc', 'matrix.cc', 'matrix.h'], 7 'SOURCES' : [
8 'CXXFLAGS': [ 8 'graphics_3d.cc',
9 '-I../../src', 9 'matrix.cc',
10 '-I../../src/ppapi/lib/gl' 10 'matrix.h',
11 'texture.cc',
11 ], 12 ],
12 'LIBS': ['ppapi_gles2', 'ppapi', 'pthread'] 13 'LIBS': ['ppapi_gles2', 'ppapi_cpp', 'ppapi', 'pthread']
13 } 14 }
14 ], 15 ],
15 'DATA': [ 16 'DATA': [
16 'fragment_shader_es2.frag', 17 'example.js'
17 'hello.raw',
18 'vertex_shader_es2.vert'
19 ], 18 ],
20 'DEST': 'examples/api', 19 'DEST': 'examples/api',
21 'NAME': 'graphics_3d', 20 'NAME': 'graphics_3d',
22 'TITLE': 'Graphics 3D', 21 'TITLE': 'Graphics 3D',
23 'GROUP': 'API' 22 'GROUP': 'API'
24 } 23 }
25 24
26 25
27 26
OLDNEW
« no previous file with comments | « no previous file | native_client_sdk/src/examples/api/graphics_3d/example.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698