OLD | NEW |
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 'type': 'static_library', | 44 'type': 'static_library', |
45 'dependencies': [ | 45 'dependencies': [ |
46 'es_util', | 46 'es_util', |
47 ], | 47 ], |
48 'sources': [ | 48 'sources': [ |
49 'Chapter_9/MipMap2D/MipMap2D.c', | 49 'Chapter_9/MipMap2D/MipMap2D.c', |
50 'Chapter_9/MipMap2D/MipMap2D.h', | 50 'Chapter_9/MipMap2D/MipMap2D.h', |
51 ], | 51 ], |
52 }, | 52 }, |
53 { | 53 { |
| 54 'target_name': 'simple_texture_2d', |
| 55 'type': 'static_library', |
| 56 'dependencies': [ |
| 57 'es_util', |
| 58 ], |
| 59 'sources': [ |
| 60 'Chapter_9/Simple_Texture2D/Simple_Texture2D.c', |
| 61 'Chapter_9/Simple_Texture2D/Simple_Texture2D.h', |
| 62 ], |
| 63 }, |
| 64 { |
54 'target_name': 'simple_vertex_shader', | 65 'target_name': 'simple_vertex_shader', |
55 'type': 'static_library', | 66 'type': 'static_library', |
56 'dependencies': [ | 67 'dependencies': [ |
57 'es_util', | 68 'es_util', |
58 ], | 69 ], |
59 'sources': [ | 70 'sources': [ |
60 'Chapter_8/Simple_VertexShader/Simple_VertexShader.c', | 71 'Chapter_8/Simple_VertexShader/Simple_VertexShader.c', |
61 'Chapter_8/Simple_VertexShader/Simple_VertexShader.h', | 72 'Chapter_8/Simple_VertexShader/Simple_VertexShader.h', |
62 ], | 73 ], |
63 }, | 74 }, |
64 ] | 75 ] |
65 } | 76 } |
66 | 77 |
67 # Local Variables: | 78 # Local Variables: |
68 # tab-width:2 | 79 # tab-width:2 |
69 # indent-tabs-mode:nil | 80 # indent-tabs-mode:nil |
70 # End: | 81 # End: |
71 # vim: set expandtab tabstop=2 shiftwidth=2: | 82 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |