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 { | 5 { |
6 'includes': [ | 6 'includes': [ |
7 'nacl_browser_test.gypi', | 7 'nacl_browser_test.gypi', |
8 ], | 8 ], |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 'pnacl_nmf_options/pnacl_o_0.nmf', | 167 'pnacl_nmf_options/pnacl_o_0.nmf', |
168 'pnacl_nmf_options/pnacl_o_2.nmf', | 168 'pnacl_nmf_options/pnacl_o_2.nmf', |
169 'pnacl_nmf_options/pnacl_o_large.nmf', | 169 'pnacl_nmf_options/pnacl_o_large.nmf', |
170 'pnacl_nmf_options/pnacl_time_passes.nmf', | 170 'pnacl_nmf_options/pnacl_time_passes.nmf', |
171 ], | 171 ], |
172 }, | 172 }, |
173 'dependencies': [ | 173 'dependencies': [ |
174 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 174 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
175 ] | 175 ] |
176 }, | 176 }, |
| 177 { |
| 178 'target_name': 'pnacl_dyncode_syscall_disabled_test', |
| 179 'type': 'none', |
| 180 'variables': { |
| 181 # This tests that nexes produced by translation in the browser are not |
| 182 # able to use the dyncode syscalls. Pre-translated nexes are not |
| 183 # subject to this constraint, so we do not test them. |
| 184 'enable_x86_32': 0, |
| 185 'enable_x86_64': 0, |
| 186 'enable_arm': 0, |
| 187 'nexe_target': 'pnacl_dyncode_syscall_disabled', |
| 188 'build_pnacl_newlib': 1, |
| 189 'link_flags': [ |
| 190 '-lppapi', |
| 191 '-lppapi_test_lib', |
| 192 '-lplatform', |
| 193 '-lgio', |
| 194 '-lnacl_dyncode', |
| 195 ], |
| 196 'sources': [ |
| 197 'pnacl_dyncode_syscall_disabled/pnacl_dyncode_syscall_disabled.cc', |
| 198 ], |
| 199 'test_files': [ |
| 200 'pnacl_dyncode_syscall_disabled/pnacl_dyncode_syscall_disabled.html', |
| 201 ], |
| 202 }, |
| 203 'dependencies': [ |
| 204 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib', |
| 205 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib', |
| 206 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_dynacode_lib', |
| 207 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 208 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib', |
| 209 '<(DEPTH)/ppapi/ppapi_untrusted.gyp:ppapi_cpp_lib', |
| 210 'ppapi_test_lib', |
| 211 ], |
| 212 }, |
177 # Legacy NaCl PPAPI interface tests being here. | 213 # Legacy NaCl PPAPI interface tests being here. |
178 { | 214 { |
179 'target_name': 'ppapi_ppb_core', | 215 'target_name': 'ppapi_ppb_core', |
180 'type': 'none', | 216 'type': 'none', |
181 'variables': { | 217 'variables': { |
182 'nexe_target': 'ppapi_ppb_core', | 218 'nexe_target': 'ppapi_ppb_core', |
183 'build_newlib': 1, | 219 'build_newlib': 1, |
184 'build_glibc': 1, | 220 'build_glibc': 1, |
185 'build_pnacl_newlib': 1, | 221 'build_pnacl_newlib': 1, |
186 'link_flags': [ | 222 'link_flags': [ |
(...skipping 13 matching lines...) Expand all Loading... |
200 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 236 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
201 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib', | 237 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib', |
202 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib', | 238 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib', |
203 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib', | 239 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib', |
204 '<(DEPTH)/ppapi/ppapi_untrusted.gyp:ppapi_cpp_lib', | 240 '<(DEPTH)/ppapi/ppapi_untrusted.gyp:ppapi_cpp_lib', |
205 'ppapi_test_lib', | 241 'ppapi_test_lib', |
206 ], | 242 ], |
207 }, | 243 }, |
208 ], | 244 ], |
209 } | 245 } |
OLD | NEW |