| 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 22 matching lines...) Expand all Loading... |
| 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: |
| OLD | NEW |