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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/tools/tls_edit/DEPS ('k') | src/tools/tls_edit/tls_edit.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/tools/tls_edit/build.scons
diff --git a/src/tools/tls_edit/build.scons b/src/tools/tls_edit/build.scons
new file mode 100644
index 0000000000000000000000000000000000000000..97f9b9b516307b3098e6bb29ddbc7161d6b7bca9
--- /dev/null
+++ b/src/tools/tls_edit/build.scons
@@ -0,0 +1,15 @@
+# -*- python -*-
+# Copyright (c) 2014 The Native Client Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+Import('env')
+
+# Compile this program using the host build environment since it is always
+# used as an intermediate build step.
+tls_edit_env = env['BUILD_ENV']
+tls_edit_exe = tls_edit_env.ComponentProgram(
+ 'tls_edit',
+ 'tls_edit.c',
+ EXTRA_LIBS=['rdfa_validator', 'platform'])
+tls_edit_env.Install('${STAGING_DIR}', tls_edit_exe)
« 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