OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'variables': { | |
7 'chromium_code': 1, | |
8 }, | |
9 'includes': [ | |
10 '../../build/common.gypi', | |
11 ], | |
12 'targets': [ | |
13 { | |
14 'target_name': 'app_framework', | |
15 'type': 'static_library', | |
16 'dependencies': [ | |
17 '../gpu.gyp:command_buffer_client', | |
18 '../gpu.gyp:command_buffer_service', | |
19 ], | |
20 'sources': [ | |
21 'app_framework/application.cc', | |
22 'app_framework/application.h', | |
23 'app_framework/gles2_utils.cc', | |
24 'app_framework/gles2_utils.h', | |
25 'app_framework/platform.h', | |
26 ], | |
27 }, | |
28 { | |
29 'target_name': 'hello_triangle', | |
30 'type': 'executable', | |
31 'dependencies': [ | |
32 'app_framework', | |
33 '../../third_party/gles_book_examples/gles_book_examples.gyp:hello_trian
gle', | |
34 ], | |
35 'sources': [ | |
36 'hello_triangle/main.cc', | |
37 ], | |
38 }, | |
39 ] | |
40 } | |
41 | |
42 # Local Variables: | |
43 # tab-width:2 | |
44 # indent-tabs-mode:nil | |
45 # End: | |
46 # vim: set expandtab tabstop=2 shiftwidth=2: | |
OLD | NEW |