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

Side by Side Diff: third_party/gles2_book/gles2_book.gyp

Issue 542067: Added mip-mapping demo.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 11 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'es_util', 8 'target_name': 'es_util',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 22 matching lines...) Expand all
33 'type': 'static_library', 33 'type': 'static_library',
34 'dependencies': [ 34 'dependencies': [
35 'es_util', 35 'es_util',
36 ], 36 ],
37 'sources': [ 37 'sources': [
38 'Chapter_2/Hello_Triangle/Hello_Triangle.c', 38 'Chapter_2/Hello_Triangle/Hello_Triangle.c',
39 'Chapter_2/Hello_Triangle/Hello_Triangle.h', 39 'Chapter_2/Hello_Triangle/Hello_Triangle.h',
40 ], 40 ],
41 }, 41 },
42 { 42 {
43 'target_name': 'mip_map_2d',
44 'type': 'static_library',
45 'dependencies': [
46 'es_util',
47 ],
48 'sources': [
49 'Chapter_9/MipMap2D/MipMap2D.c',
50 'Chapter_9/MipMap2D/MipMap2D.h',
51 ],
52 },
53 {
43 'target_name': 'simple_vertex_shader', 54 'target_name': 'simple_vertex_shader',
44 'type': 'static_library', 55 'type': 'static_library',
45 'dependencies': [ 56 'dependencies': [
46 'es_util', 57 'es_util',
47 ], 58 ],
48 'sources': [ 59 'sources': [
49 'Chapter_8/Simple_VertexShader/Simple_VertexShader.c', 60 'Chapter_8/Simple_VertexShader/Simple_VertexShader.c',
50 'Chapter_8/Simple_VertexShader/Simple_VertexShader.h', 61 'Chapter_8/Simple_VertexShader/Simple_VertexShader.h',
51 ], 62 ],
52 }, 63 },
53 ] 64 ]
54 } 65 }
55 66
56 # Local Variables: 67 # Local Variables:
57 # tab-width:2 68 # tab-width:2
58 # indent-tabs-mode:nil 69 # indent-tabs-mode:nil
59 # End: 70 # End:
60 # vim: set expandtab tabstop=2 shiftwidth=2: 71 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« gpu/demos/mip_map_2d/main.cc ('K') | « third_party/gles2_book/Chapter_9/MipMap2D/MipMap2D.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698