| OLD | NEW |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 The Native Client 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 file is used via 'includes' by an irt_test.gyp both here and in | 5 # This file is used via 'includes' by an irt_test.gyp both here and in |
| 6 # chromium/src/ppapi/native_client. The including file must first include | 6 # chromium/src/ppapi/native_client. The including file must first include |
| 7 # build/common.gypi to get 'python_exe' set. The including file must first | 7 # build/common.gypi to get 'python_exe' set. The including file must first |
| 8 # set the variable 'irt_test_nexe' (e.g. to 'irt_core'); setting that to '' | 8 # set the variable 'irt_test_nexe' (e.g. to 'irt_core'); setting that to '' |
| 9 # (the empty string) instructs this file to run the test on the | 9 # (the empty string) instructs this file to run the test on the |
| 10 # nacl_irt_*.nexe file instead of a named one. The including file must | 10 # nacl_irt_*.nexe file instead of a named one. The including file must |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 }], | 64 }], |
| 65 ['target_arch=="ia32"', { | 65 ['target_arch=="ia32"', { |
| 66 'variables': { | 66 'variables': { |
| 67 'check_tls_arch': 'x86-32', | 67 'check_tls_arch': 'x86-32', |
| 68 'nexe_suffix': 'newlib_x32', | 68 'nexe_suffix': 'newlib_x32', |
| 69 'nacl_irt_name': 'nacl_irt_x86_32', | 69 'nacl_irt_name': 'nacl_irt_x86_32', |
| 70 }, | 70 }, |
| 71 }], | 71 }], |
| 72 ['target_arch=="arm"', { | 72 ['target_arch=="arm"', { |
| 73 'variables': { | 73 'variables': { |
| 74 'check_tls_arch': 'arm-pnacl', | 74 'check_tls_arch': 'arm', |
| 75 'nexe_suffix': 'newlib_arm', | 75 'nexe_suffix': 'newlib_arm', |
| 76 'nacl_irt_name': 'nacl_irt_arm', | 76 'nacl_irt_name': 'nacl_irt_arm', |
| 77 }, | 77 }, |
| 78 }], | 78 }], |
| 79 ], | 79 ], |
| 80 'action': ['>(python_exe)', | 80 'action': ['>(python_exe)', |
| 81 '<(DEPTH)/native_client/src/untrusted/irt/check_tls.py', | 81 '<(DEPTH)/native_client/src/untrusted/irt/check_tls.py', |
| 82 '<(check_tls_arch)', '<(nacl_objdump)', | 82 '<(check_tls_arch)', '<(nacl_objdump)', |
| 83 '<@(_inputs)', '<@(_outputs)'], | 83 '<@(_inputs)', '<@(_outputs)'], |
| 84 }, | 84 }, |
| 85 ], | 85 ], |
| 86 }, | 86 }, |
| 87 ], | 87 ], |
| 88 } | 88 } |
| OLD | NEW |