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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'type': 'static_library', | 55 'type': 'static_library', |
56 'dependencies': [ | 56 'dependencies': [ |
57 'es_util', | 57 'es_util', |
58 ], | 58 ], |
59 'sources': [ | 59 'sources': [ |
60 'Chapter_9/Simple_Texture2D/Simple_Texture2D.c', | 60 'Chapter_9/Simple_Texture2D/Simple_Texture2D.c', |
61 'Chapter_9/Simple_Texture2D/Simple_Texture2D.h', | 61 'Chapter_9/Simple_Texture2D/Simple_Texture2D.h', |
62 ], | 62 ], |
63 }, | 63 }, |
64 { | 64 { |
| 65 'target_name': 'simple_texture_cubemap', |
| 66 'type': 'static_library', |
| 67 'dependencies': [ |
| 68 'es_util', |
| 69 ], |
| 70 'sources': [ |
| 71 'Chapter_9/Simple_TextureCubemap/Simple_TextureCubemap.c', |
| 72 'Chapter_9/Simple_TextureCubemap/Simple_TextureCubemap.h', |
| 73 ], |
| 74 }, |
| 75 { |
65 'target_name': 'simple_vertex_shader', | 76 'target_name': 'simple_vertex_shader', |
66 'type': 'static_library', | 77 'type': 'static_library', |
67 'dependencies': [ | 78 'dependencies': [ |
68 'es_util', | 79 'es_util', |
69 ], | 80 ], |
70 'sources': [ | 81 'sources': [ |
71 'Chapter_8/Simple_VertexShader/Simple_VertexShader.c', | 82 'Chapter_8/Simple_VertexShader/Simple_VertexShader.c', |
72 'Chapter_8/Simple_VertexShader/Simple_VertexShader.h', | 83 'Chapter_8/Simple_VertexShader/Simple_VertexShader.h', |
73 ], | 84 ], |
74 }, | 85 }, |
75 ] | 86 ] |
76 } | 87 } |
77 | 88 |
78 # Local Variables: | 89 # Local Variables: |
79 # tab-width:2 | 90 # tab-width:2 |
80 # indent-tabs-mode:nil | 91 # indent-tabs-mode:nil |
81 # End: | 92 # End: |
82 # vim: set expandtab tabstop=2 shiftwidth=2: | 93 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |