| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'type': 'executable', | 50 'type': 'executable', |
| 51 'dependencies': [ | 51 'dependencies': [ |
| 52 'app_framework', | 52 'app_framework', |
| 53 '../../third_party/gles2_book/gles2_book.gyp:simple_texture_2d', | 53 '../../third_party/gles2_book/gles2_book.gyp:simple_texture_2d', |
| 54 ], | 54 ], |
| 55 'sources': [ | 55 'sources': [ |
| 56 'simple_texture_2d/main.cc', | 56 'simple_texture_2d/main.cc', |
| 57 ], | 57 ], |
| 58 }, | 58 }, |
| 59 { | 59 { |
| 60 'target_name': 'simple_texture_cubemap', |
| 61 'type': 'executable', |
| 62 'dependencies': [ |
| 63 'app_framework', |
| 64 '../../third_party/gles2_book/gles2_book.gyp:simple_texture_cubemap', |
| 65 ], |
| 66 'sources': [ |
| 67 'simple_texture_cubemap/main.cc', |
| 68 ], |
| 69 }, |
| 70 { |
| 60 'target_name': 'simple_vertex_shader', | 71 'target_name': 'simple_vertex_shader', |
| 61 'type': 'executable', | 72 'type': 'executable', |
| 62 'dependencies': [ | 73 'dependencies': [ |
| 63 'app_framework', | 74 'app_framework', |
| 64 '../../third_party/gles2_book/gles2_book.gyp:simple_vertex_shader', | 75 '../../third_party/gles2_book/gles2_book.gyp:simple_vertex_shader', |
| 65 ], | 76 ], |
| 66 'sources': [ | 77 'sources': [ |
| 67 'simple_vertex_shader/main.cc', | 78 'simple_vertex_shader/main.cc', |
| 68 ], | 79 ], |
| 69 }, | 80 }, |
| 70 ] | 81 ] |
| 71 } | 82 } |
| 72 | 83 |
| 73 # Local Variables: | 84 # Local Variables: |
| 74 # tab-width:2 | 85 # tab-width:2 |
| 75 # indent-tabs-mode:nil | 86 # indent-tabs-mode:nil |
| 76 # End: | 87 # End: |
| 77 # vim: set expandtab tabstop=2 shiftwidth=2: | 88 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |