Index: tests/trusted_crash/osx_crash_filter/nacl.scons |
diff --git a/tests/trusted_crash/osx_crash_filter/nacl.scons b/tests/trusted_crash/osx_crash_filter/nacl.scons |
index a82f3c0e979e936d740f979de2b79a75d0da8feb..c8ac31927eb15462e7cb8fffa1c703e6f4bf609a 100644 |
--- a/tests/trusted_crash/osx_crash_filter/nacl.scons |
+++ b/tests/trusted_crash/osx_crash_filter/nacl.scons |
@@ -23,12 +23,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'] |
- |
runner = trusted_env.ComponentProgram( |
'crash_filter_test', ['crash_filter_test.c'], |
EXTRA_LIBS=['sel', |
@@ -48,7 +42,7 @@ runner = trusted_env.ComponentProgram( |
'platform', |
'platform_qual_lib', |
'gio', |
- ] + VALIDATOR_LIBS) |
+ ]) |
untrusted_crash_nexe = env.File('${STAGING_DIR}/crash_test${PROGSUFFIX}') |
trusted_crash_nexe = env.File('${STAGING_DIR}/crash_in_syscall${PROGSUFFIX}') |