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

Unified Diff: tests/multiple_sandboxes/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 | « tests/minnacl/nacl.scons ('k') | tests/trusted_crash/osx_crash_filter/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/multiple_sandboxes/nacl.scons
diff --git a/tests/multiple_sandboxes/nacl.scons b/tests/multiple_sandboxes/nacl.scons
index d65c2dc108e3131c973cffc2afe24a586d3ffa10..aa82dee61fa5dd2e7839beeaf9248b9677f14cc7 100644
--- a/tests/multiple_sandboxes/nacl.scons
+++ b/tests/multiple_sandboxes/nacl.scons
@@ -16,12 +16,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_verbose')]
-elif trusted_env.Bit('target_arm'):
- VALIDATOR_LIBS += ['ncvalidate_arm_v2']
-
runner = trusted_env.ComponentProgram(
'multidomain_test_host', ['multidomain_test_host.c'],
EXTRA_LIBS=['sel',
@@ -41,7 +35,7 @@ runner = trusted_env.ComponentProgram(
'platform',
'platform_qual_lib',
'gio',
- ] + VALIDATOR_LIBS)
+ ])
test_prog = env.ComponentProgram(
'multidomain_test_guest', ['multidomain_test_guest.c'],
« no previous file with comments | « tests/minnacl/nacl.scons ('k') | tests/trusted_crash/osx_crash_filter/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698