LEFT | RIGHT |
1 # Copyright (c) 2010 The ANGLE Project Authors. All rights reserved. | 1 # Copyright (c) 2010 The ANGLE Project 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'essl_to_glsl', | 8 'target_name': 'essl_to_glsl', |
9 'type': 'executable', | 9 'type': 'executable', |
10 'dependencies': [ | 10 'dependencies': [ |
11 '../src/build_angle.gyp:translator_static', | 11 '../src/build_angle.gyp:translator', |
12 ], | 12 ], |
13 'include_dirs': [ | 13 'include_dirs': [ |
14 '../include', | 14 '../include', |
15 ], | 15 ], |
16 'sources': [ | 16 'sources': [ |
17 'translator/translator.cpp', | 17 'translator/translator.cpp', |
18 ], | 18 ], |
19 }, | 19 }, |
20 ], | 20 ], |
21 'conditions': [ | 21 'conditions': [ |
22 ['OS=="win"', { | 22 ['OS=="win"', { |
23 'targets': [ | 23 'targets': [ |
24 { | 24 { |
25 'target_name': 'essl_to_hlsl', | 25 'target_name': 'essl_to_hlsl', |
26 'type': 'executable', | 26 'type': 'executable', |
27 'dependencies': [ | 27 'dependencies': [ |
28 '../src/build_angle.gyp:translator_static', | 28 '../src/build_angle.gyp:translator', |
29 ], | 29 ], |
30 'include_dirs': [ | 30 'include_dirs': [ |
31 '../include', | 31 '../include', |
32 '../src', | 32 '../src', |
33 ], | 33 ], |
34 'sources': [ | 34 'sources': [ |
35 'translator/translator.cpp', | 35 'translator/translator.cpp', |
36 '../src/common/debug.cpp', | 36 '../src/common/debug.cpp', |
37 ], | 37 ], |
38 'msvs_settings': { | 38 'msvs_settings': { |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 ], | 169 ], |
170 }], | 170 }], |
171 ], | 171 ], |
172 } | 172 } |
173 | 173 |
174 # Local Variables: | 174 # Local Variables: |
175 # tab-width:2 | 175 # tab-width:2 |
176 # indent-tabs-mode:nil | 176 # indent-tabs-mode:nil |
177 # End: | 177 # End: |
178 # vim: set expandtab tabstop=2 shiftwidth=2: | 178 # vim: set expandtab tabstop=2 shiftwidth=2: |
LEFT | RIGHT |