OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # This GYP file defines untrusted (NaCl) targets. All targets in this | 5 # This GYP file defines untrusted (NaCl) targets. All targets in this |
6 # file should be conditionally depended upon via 'disable_nacl!=1' to avoid | 6 # file should be conditionally depended upon via 'disable_nacl!=1' to avoid |
7 # requiring NaCl sources for building. | 7 # requiring NaCl sources for building. |
8 | 8 |
9 { | 9 { |
10 'includes': [ | 10 'includes': [ |
(...skipping 17 matching lines...) Expand all Loading... |
28 'dependencies': [ | 28 'dependencies': [ |
29 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 29 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
30 ], | 30 ], |
31 }, | 31 }, |
32 { | 32 { |
33 'target_name': 'ppapi_nacl_tests', | 33 'target_name': 'ppapi_nacl_tests', |
34 'type': 'none', | 34 'type': 'none', |
35 'dependencies': [ | 35 'dependencies': [ |
36 'ppapi_cpp_lib', | 36 'ppapi_cpp_lib', |
37 'native_client/native_client.gyp:ppapi_lib', | 37 'native_client/native_client.gyp:ppapi_lib', |
38 'native_client/native_client.gyp:nacl_irt', | |
39 ], | 38 ], |
40 'variables': { | 39 'variables': { |
41 # TODO(bradnelson): Remove this compile flag once new nacl_rev is | 40 # TODO(bradnelson): Remove this compile flag once new nacl_rev is |
42 # above 9362. | 41 # above 9362. |
43 'compile_flags': [ | 42 'compile_flags': [ |
44 '-DGL_GLEXT_PROTOTYPES', | 43 '-DGL_GLEXT_PROTOTYPES', |
45 ], | 44 ], |
46 'defines': [ | 45 'defines': [ |
47 'GL_GLEXT_PROTOTYPES', | 46 'GL_GLEXT_PROTOTYPES', |
48 ], | 47 ], |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 '--stage-dependencies=<(PRODUCT_DIR)', | 126 '--stage-dependencies=<(PRODUCT_DIR)', |
128 '--toolchain=glibc', | 127 '--toolchain=glibc', |
129 ], | 128 ], |
130 }, | 129 }, |
131 ], | 130 ], |
132 }], | 131 }], |
133 ], | 132 ], |
134 }, | 133 }, |
135 ], | 134 ], |
136 } | 135 } |
OLD | NEW |