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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../../build/common.gypi', | 10 '../../build/common.gypi', |
(...skipping 28 matching lines...) Expand all Loading... |
39 'type': 'executable', | 39 'type': 'executable', |
40 'dependencies': [ | 40 'dependencies': [ |
41 'app_framework', | 41 'app_framework', |
42 '../../third_party/gles2_book/gles2_book.gyp:mip_map_2d', | 42 '../../third_party/gles2_book/gles2_book.gyp:mip_map_2d', |
43 ], | 43 ], |
44 'sources': [ | 44 'sources': [ |
45 'mip_map_2d/main.cc', | 45 'mip_map_2d/main.cc', |
46 ], | 46 ], |
47 }, | 47 }, |
48 { | 48 { |
| 49 'target_name': 'simple_texture_2d', |
| 50 'type': 'executable', |
| 51 'dependencies': [ |
| 52 'app_framework', |
| 53 '../../third_party/gles2_book/gles2_book.gyp:simple_texture_2d', |
| 54 ], |
| 55 'sources': [ |
| 56 'simple_texture_2d/main.cc', |
| 57 ], |
| 58 }, |
| 59 { |
49 'target_name': 'simple_vertex_shader', | 60 'target_name': 'simple_vertex_shader', |
50 'type': 'executable', | 61 'type': 'executable', |
51 'dependencies': [ | 62 'dependencies': [ |
52 'app_framework', | 63 'app_framework', |
53 '../../third_party/gles2_book/gles2_book.gyp:simple_vertex_shader', | 64 '../../third_party/gles2_book/gles2_book.gyp:simple_vertex_shader', |
54 ], | 65 ], |
55 'sources': [ | 66 'sources': [ |
56 'simple_vertex_shader/main.cc', | 67 'simple_vertex_shader/main.cc', |
57 ], | 68 ], |
58 }, | 69 }, |
59 ] | 70 ] |
60 } | 71 } |
61 | 72 |
62 # Local Variables: | 73 # Local Variables: |
63 # tab-width:2 | 74 # tab-width:2 |
64 # indent-tabs-mode:nil | 75 # indent-tabs-mode:nil |
65 # End: | 76 # End: |
66 # vim: set expandtab tabstop=2 shiftwidth=2: | 77 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |