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

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

Issue 14607005: [NaCl SDK] Cleanup examples. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: feedback Created 7 years, 7 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 { 1 {
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'],
3 'TARGETS': [ 3 'TARGETS': [
4 { 4 {
5 'NAME' : 'hello_world_gles', 5 'NAME' : 'graphics_3d',
6 'TYPE' : 'main', 6 'TYPE' : 'main',
7 'SOURCES' : ['hello_world.cc', 'matrix.cc', 'matrix.h'], 7 'SOURCES' : ['graphics_3d.cc', 'matrix.cc', 'matrix.h'],
8 'CXXFLAGS': [ 8 'CXXFLAGS': [
9 '-I../../src', 9 '-I../../src',
10 '-I../../src/ppapi/lib/gl' 10 '-I../../src/ppapi/lib/gl'
11 ], 11 ],
12 'LIBS': ['ppapi_gles2', 'ppapi', 'pthread'] 12 'LIBS': ['ppapi_gles2', 'ppapi', 'pthread']
13 } 13 }
14 ], 14 ],
15 'DATA': [ 15 'DATA': [
16 'fragment_shader_es2.frag', 16 'fragment_shader_es2.frag',
17 'hello.raw', 17 'hello.raw',
18 'vertex_shader_es2.vert' 18 'vertex_shader_es2.vert'
19 ], 19 ],
20 'DEST': 'examples/api', 20 'DEST': 'examples/api',
21 'NAME': 'graphics_3d', 21 'NAME': 'graphics_3d',
22 'TITLE': 'Graphics 3D', 22 'TITLE': 'Graphics 3D',
23 'GROUP': 'API' 23 'GROUP': 'API'
24 } 24 }
25 25
26 26
27 27
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698