Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: src/untrusted/irt/check_tls.gypi

Issue 12386091: Simplify check_tls on ARM, now that llvm emits mapping symbols. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: simplify_more Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/untrusted/irt/check_tls.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | src/untrusted/irt/check_tls.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698