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

Unified Diff: tests/custom_desc/nacl.scons

Issue 10158002: Scons: Remove duplication of VALIDATOR_LIBS list and use library_deps.py instead (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Copyright 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
« no previous file with comments | « src/trusted/service_runtime/build.scons ('k') | tests/minnacl/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/custom_desc/nacl.scons
diff --git a/tests/custom_desc/nacl.scons b/tests/custom_desc/nacl.scons
index a2a03d7f78ac10afb6326a52552534c0014688c5..24600d78e618bd6939814ab99e347801f0f2137c 100644
--- a/tests/custom_desc/nacl.scons
+++ b/tests/custom_desc/nacl.scons
@@ -12,12 +12,6 @@ trusted_env = env['TRUSTED_ENV']
# This duplicates the library list in src/trusted/service_runtime/build.scons.
# We would not have to do this if we could get Scons to track dependencies
# between libraries.
-VALIDATOR_LIBS = []
-if trusted_env.Bit('target_x86'):
- VALIDATOR_LIBS += [trusted_env.NaClTargetArchSuffix('ncvalidate')]
-elif trusted_env.Bit('target_arm'):
- VALIDATOR_LIBS += ['ncvalidate_arm_v2']
-
test_host = trusted_env.ComponentProgram(
'desc_test_host', ['desc_test_host.c'],
EXTRA_LIBS=['sel',
@@ -37,7 +31,7 @@ test_host = trusted_env.ComponentProgram(
'platform',
'platform_qual_lib',
'gio',
- ] + VALIDATOR_LIBS)
+ ])
test_guest = env.ComponentProgram(
'desc_test_guest', ['desc_test_guest.c'],
« no previous file with comments | « src/trusted/service_runtime/build.scons ('k') | tests/minnacl/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698