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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 'type': 'shared_library', | 87 'type': 'shared_library', |
88 'dependencies': [ | 88 'dependencies': [ |
89 'gpu_demo_framework_pepper', | 89 'gpu_demo_framework_pepper', |
90 '../../third_party/gles2_book/gles2_book.gyp:hello_triangle', | 90 '../../third_party/gles2_book/gles2_book.gyp:hello_triangle', |
91 ], | 91 ], |
92 'sources': [ | 92 'sources': [ |
93 'gles2_book/example.h', | 93 'gles2_book/example.h', |
94 'gles2_book/hello_triangle.cc', | 94 'gles2_book/hello_triangle.cc', |
95 ], | 95 ], |
96 }, | 96 }, |
| 97 { |
| 98 'target_name': 'mip_map_2d_exe', |
| 99 'type': 'executable', |
| 100 'dependencies': [ |
| 101 'gpu_demo_framework_exe', |
| 102 '../../third_party/gles2_book/gles2_book.gyp:mip_map_2d', |
| 103 ], |
| 104 'sources': [ |
| 105 'gles2_book/example.h', |
| 106 'gles2_book/mip_map_2d.cc', |
| 107 ], |
| 108 }, |
| 109 { |
| 110 'target_name': 'mip_map_2d_pepper', |
| 111 'type': 'shared_library', |
| 112 'dependencies': [ |
| 113 'gpu_demo_framework_pepper', |
| 114 '../../third_party/gles2_book/gles2_book.gyp:mip_map_2d', |
| 115 ], |
| 116 'sources': [ |
| 117 'gles2_book/example.h', |
| 118 'gles2_book/mip_map_2d.cc', |
| 119 ], |
| 120 }, |
| 121 { |
| 122 'target_name': 'simple_texture_2d_exe', |
| 123 'type': 'executable', |
| 124 'dependencies': [ |
| 125 'gpu_demo_framework_exe', |
| 126 '../../third_party/gles2_book/gles2_book.gyp:simple_texture_2d', |
| 127 ], |
| 128 'sources': [ |
| 129 'gles2_book/example.h', |
| 130 'gles2_book/simple_texture_2d.cc', |
| 131 ], |
| 132 }, |
| 133 { |
| 134 'target_name': 'simple_texture_2d_pepper', |
| 135 'type': 'shared_library', |
| 136 'dependencies': [ |
| 137 'gpu_demo_framework_pepper', |
| 138 '../../third_party/gles2_book/gles2_book.gyp:simple_texture_2d', |
| 139 ], |
| 140 'sources': [ |
| 141 'gles2_book/example.h', |
| 142 'gles2_book/simple_texture_2d.cc', |
| 143 ], |
| 144 }, |
| 145 { |
| 146 'target_name': 'simple_texture_cubemap_exe', |
| 147 'type': 'executable', |
| 148 'dependencies': [ |
| 149 'gpu_demo_framework_exe', |
| 150 '../../third_party/gles2_book/gles2_book.gyp:simple_texture_cubemap', |
| 151 ], |
| 152 'sources': [ |
| 153 'gles2_book/example.h', |
| 154 'gles2_book/simple_texture_cubemap.cc', |
| 155 ], |
| 156 }, |
| 157 { |
| 158 'target_name': 'simple_texture_cubemap_pepper', |
| 159 'type': 'shared_library', |
| 160 'dependencies': [ |
| 161 'gpu_demo_framework_pepper', |
| 162 '../../third_party/gles2_book/gles2_book.gyp:simple_texture_cubemap', |
| 163 ], |
| 164 'sources': [ |
| 165 'gles2_book/example.h', |
| 166 'gles2_book/simple_texture_cubemap.cc', |
| 167 ], |
| 168 }, |
| 169 { |
| 170 'target_name': 'simple_vertex_shader_exe', |
| 171 'type': 'executable', |
| 172 'dependencies': [ |
| 173 'gpu_demo_framework_exe', |
| 174 '../../third_party/gles2_book/gles2_book.gyp:simple_vertex_shader', |
| 175 ], |
| 176 'sources': [ |
| 177 'gles2_book/example.h', |
| 178 'gles2_book/simple_vertex_shader.cc', |
| 179 ], |
| 180 }, |
| 181 { |
| 182 'target_name': 'simple_vertex_shader_pepper', |
| 183 'type': 'shared_library', |
| 184 'dependencies': [ |
| 185 'gpu_demo_framework_pepper', |
| 186 '../../third_party/gles2_book/gles2_book.gyp:simple_vertex_shader', |
| 187 ], |
| 188 'sources': [ |
| 189 'gles2_book/example.h', |
| 190 'gles2_book/simple_vertex_shader.cc', |
| 191 ], |
| 192 }, |
| 193 { |
| 194 'target_name': 'stencil_test_exe', |
| 195 'type': 'executable', |
| 196 'dependencies': [ |
| 197 'gpu_demo_framework_exe', |
| 198 '../../third_party/gles2_book/gles2_book.gyp:stencil_test', |
| 199 ], |
| 200 'sources': [ |
| 201 'gles2_book/example.h', |
| 202 'gles2_book/stencil_test.cc', |
| 203 ], |
| 204 }, |
| 205 { |
| 206 'target_name': 'stencil_test_pepper', |
| 207 'type': 'shared_library', |
| 208 'dependencies': [ |
| 209 'gpu_demo_framework_pepper', |
| 210 '../../third_party/gles2_book/gles2_book.gyp:stencil_test', |
| 211 ], |
| 212 'sources': [ |
| 213 'gles2_book/example.h', |
| 214 'gles2_book/stencil_test.cc', |
| 215 ], |
| 216 }, |
| 217 { |
| 218 'target_name': 'texture_wrap_exe', |
| 219 'type': 'executable', |
| 220 'dependencies': [ |
| 221 'gpu_demo_framework_exe', |
| 222 '../../third_party/gles2_book/gles2_book.gyp:texture_wrap', |
| 223 ], |
| 224 'sources': [ |
| 225 'gles2_book/example.h', |
| 226 'gles2_book/texture_wrap.cc', |
| 227 ], |
| 228 }, |
| 229 { |
| 230 'target_name': 'texture_wrap_pepper', |
| 231 'type': 'shared_library', |
| 232 'dependencies': [ |
| 233 'gpu_demo_framework_pepper', |
| 234 '../../third_party/gles2_book/gles2_book.gyp:texture_wrap', |
| 235 ], |
| 236 'sources': [ |
| 237 'gles2_book/example.h', |
| 238 'gles2_book/texture_wrap.cc', |
| 239 ], |
| 240 }, |
97 ] | 241 ] |
98 } | 242 } |
99 | 243 |
100 # Local Variables: | 244 # Local Variables: |
101 # tab-width:2 | 245 # tab-width:2 |
102 # indent-tabs-mode:nil | 246 # indent-tabs-mode:nil |
103 # End: | 247 # End: |
104 # vim: set expandtab tabstop=2 shiftwidth=2: | 248 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |