| 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 17 matching lines...) Expand all Loading... |
| 28 'type': 'executable', | 28 'type': 'executable', |
| 29 'dependencies': [ | 29 'dependencies': [ |
| 30 'app_framework', | 30 'app_framework', |
| 31 '../../third_party/gles2_book/gles2_book.gyp:hello_triangle', | 31 '../../third_party/gles2_book/gles2_book.gyp:hello_triangle', |
| 32 ], | 32 ], |
| 33 'sources': [ | 33 'sources': [ |
| 34 'hello_triangle/main.cc', | 34 'hello_triangle/main.cc', |
| 35 ], | 35 ], |
| 36 }, | 36 }, |
| 37 { | 37 { |
| 38 'target_name': 'mip_map_2d', |
| 39 'type': 'executable', |
| 40 'dependencies': [ |
| 41 'app_framework', |
| 42 '../../third_party/gles2_book/gles2_book.gyp:mip_map_2d', |
| 43 ], |
| 44 'sources': [ |
| 45 'mip_map_2d/main.cc', |
| 46 ], |
| 47 }, |
| 48 { |
| 38 'target_name': 'simple_vertex_shader', | 49 'target_name': 'simple_vertex_shader', |
| 39 'type': 'executable', | 50 'type': 'executable', |
| 40 'dependencies': [ | 51 'dependencies': [ |
| 41 'app_framework', | 52 'app_framework', |
| 42 '../../third_party/gles2_book/gles2_book.gyp:simple_vertex_shader', | 53 '../../third_party/gles2_book/gles2_book.gyp:simple_vertex_shader', |
| 43 ], | 54 ], |
| 44 'sources': [ | 55 'sources': [ |
| 45 'simple_vertex_shader/main.cc', | 56 'simple_vertex_shader/main.cc', |
| 46 ], | 57 ], |
| 47 }, | 58 }, |
| 48 ] | 59 ] |
| 49 } | 60 } |
| 50 | 61 |
| 51 # Local Variables: | 62 # Local Variables: |
| 52 # tab-width:2 | 63 # tab-width:2 |
| 53 # indent-tabs-mode:nil | 64 # indent-tabs-mode:nil |
| 54 # End: | 65 # End: |
| 55 # vim: set expandtab tabstop=2 shiftwidth=2: | 66 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |