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

Unified Diff: experimental/webgtt/tests/nacltest/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/webgtt/tests/nacltest/scons.bat ('k') | experimental/webgtt/tests/nacltest/webgtt_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/webgtt/tests/nacltest/test.scons
diff --git a/experimental/webgtt/tests/nacltest/test.scons b/experimental/webgtt/tests/nacltest/test.scons
deleted file mode 100644
index 5a568d5999e884acc6c569941338b9e600c7d3f9..0000000000000000000000000000000000000000
--- a/experimental/webgtt/tests/nacltest/test.scons
+++ /dev/null
@@ -1,66 +0,0 @@
-#! -*- python -*-
-# Copyright 2011 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.
-
-import os
-import subprocess
-from build_tools import build_utils
-
-Import('env')
-
-# ----------------------------------------------------------------------------
-# Add a builder for the WebGTT test. This adds an Alias() node named
-# 'webgtt_test' that is always built. There is some special handling for the
-# clean mode, since SCons relies on actual build products for its clean
-# processing and will not run Alias() actions during clean unless they actually
-# produce something.
-
-
-def BuildWebGTTTest(env, target, source):
- '''Build the WebGTT test.
-
- This builds the nexes for the WebGTT test.
-
- Args:
- env: The construction Environment() that is building the test.
- target: The target that triggered this build. Not used.
- source: The sources used for this build. Not used.
- '''
- env.BuildNaClTest(os.path.join('experimental', 'webgtt', 'tests', 'nacltest'))
-
-
-def CleanWebGTTTest(env, target, source):
- '''Clean the WebGTT test.
-
- This cleans the WebGTT test.
-
- Args:
- env: The construction Environment() that is building the test.
- target: The target that triggered this build. Not used.
- source: The sources used for this build. Not used.
- '''
- env.CleanNaClTest()
-
-webgtt_test_builder = env.Alias('webgtt_test', [env.GetToolchainNode()],
- BuildWebGTTTest)
-env.AlwaysBuild(webgtt_test_builder)
-env.AddCleanAction(['.'], CleanWebGTTTest, ['bot'], webgtt_test_builder)
-
-# Create the test node
-
-webgtt_files = ['webgtt_test.html', 'webgtt_test.js', 'webgtt.nmf',
- 'webgtt_x86_32.nexe', 'webgtt_x86_64.nexe']
-
-webgtt_staging_files = [os.path.join('$STAGING_DIR', x) for x in webgtt_files]
-
-node = env.PPAPIBrowserTester('webgtt_test.out',
- url='webgtt_test.html',
- files=webgtt_staging_files)
-
-env.AddNodeToTestSuite(node,
- ['bot'],
- 'run_webgtt_test')
-
-# Make sure the test is built and nexes are available before it is run.
-env.Depends(node, webgtt_test_builder)
« no previous file with comments | « experimental/webgtt/tests/nacltest/scons.bat ('k') | experimental/webgtt/tests/nacltest/webgtt_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698