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

Side by Side Diff: src/tools/tls_edit/build.scons

Issue 140653005: Adds tls_edit utility which patches irt_core.nexe's TLS usage. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Rebased to master Created 6 years, 10 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 | « src/tools/tls_edit/DEPS ('k') | src/tools/tls_edit/tls_edit.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # -*- python -*-
2 # Copyright (c) 2014 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 Import('env')
7
8 # Compile this program using the host build environment since it is always
9 # used as an intermediate build step.
10 tls_edit_env = env['BUILD_ENV']
11 tls_edit_exe = tls_edit_env.ComponentProgram(
12 'tls_edit',
13 'tls_edit.c',
14 EXTRA_LIBS=['rdfa_validator', 'platform'])
15 tls_edit_env.Install('${STAGING_DIR}', tls_edit_exe)
OLDNEW
« no previous file with comments | « src/tools/tls_edit/DEPS ('k') | src/tools/tls_edit/tls_edit.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698