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: tests/minnacl/nacl.scons

Issue 10070010: validator_ragel: Link into TCB, use under env var (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: . Created 8 years, 8 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
Index: tests/minnacl/nacl.scons
diff --git a/tests/minnacl/nacl.scons b/tests/minnacl/nacl.scons
index ec5e3cce6a8920d8487fef39ce1d89edf344c032..5336807bc550b09e45326ac63a9c8b5b5a12bec8 100644
--- a/tests/minnacl/nacl.scons
+++ b/tests/minnacl/nacl.scons
@@ -1,5 +1,5 @@
# -*- python -*-
-# Copyright 2011 The Native Client Authors. All rights reserved.
+# Copyright 2012 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.
@@ -22,7 +22,10 @@ trusted_env = env['TRUSTED_ENV']
# between libraries.
VALIDATOR_LIBS = []
if trusted_env.Bit('target_x86'):
- VALIDATOR_LIBS += [trusted_env.NaClTargetArchSuffix('ncvalidate')]
+ VALIDATOR_LIBS += [trusted_env.NaClTargetArchSuffix('ncvalidate'),
Mark Seaborn 2012/04/19 22:11:39 Can you put this information into site_scons/site_
pasko-google - do not use 2012/04/20 14:30:38 looking forward to merging it with your cleanup
+ trusted_env.NaClTargetArchSuffix('dfa_validate_caller'),
+ trusted_env.NaClTargetArchSuffix('dfa_validate'),
+ ]
elif trusted_env.Bit('target_arm'):
VALIDATOR_LIBS += ['ncvalidate_arm_v2']

Powered by Google App Engine
This is Rietveld 408576698