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

Unified Diff: experimental/c_salt/test.scons

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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 | « experimental/c_salt/scripting_interface_ptrs.h ('k') | experimental/c_salt/variant.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/c_salt/test.scons
diff --git a/experimental/c_salt/test.scons b/experimental/c_salt/test.scons
deleted file mode 100644
index e57aa491466b2afcc481cd311d2f1ff55955c885..0000000000000000000000000000000000000000
--- a/experimental/c_salt/test.scons
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/usr/bin/python
-#
-# Copyright (c) 2010 The Ginsu Project Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-""" Build file for tests of c_salt code
-"""
-
-import os
-import sys
-
-Import('env')
-
-sel_ldr = os.path.join(env['NACL_TOOLCHAIN_ROOT'], 'bin', 'sel_ldr')
-if not os.path.exists(sel_ldr):
- sys.stderr.write('sel_ldr is not installed as part of the NaCl toolchain.\n')
- sys.exit(1)
-
-small_test_inputs = ['c_salt_test_module.cc',
- 'callback_test.cc',
- 'notification_test.cc',
- 'notification_center_test.cc',
- 'npapi/variant_converter_test.cc',
- 'variant_test.cc',
- ]
-
-env.ComponentTestProgram(
- 'small_c_salt_test',
- small_test_inputs,
- COMPONENT_TEST_CMDLINE = '%s $PROGRAM_NAME' % sel_ldr,
- COMPONENT_TEST_SIZE = 'small'
-)
-
-# Note, we can't use the default test environment libraries, because gtest
-# injects a main() function that makes the nexe not work as a plugin module.
-integration_test_input_libs = [
- 'google_nacl_imc',
- 'google_nacl_npruntime',
- 'pthread',
- 'srpc',
- 'c_salt',
- 'google_nacl_pgl',
- 'google_nacl_gpu',
-]
-integration_test_inputs = ['integration_tests/fake_instance.cc',
- 'integration_tests/method_tester.cc',
- 'integration_tests/property_tester.cc',
- 'integration_tests/test_module.cc',
-]
-integration_test_app = [
- 'integration_tests/c_salt_tests.html',
-]
-
-install_integration_test_app = env.Install('$STAGING_DIR',
- integration_test_app)
-# TODO(dmichael): Is there an appropriate test type for this, instead of
-# making the target a ComponentProgram?
-integration_test = env.ComponentProgram(
- 'c_salt_integration_test_x86_32.nexe',
- integration_test_inputs,
- LIBS = integration_test_input_libs,
-)
-env.Depends(integration_test, install_integration_test_app)
« no previous file with comments | « experimental/c_salt/scripting_interface_ptrs.h ('k') | experimental/c_salt/variant.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698