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

Unified Diff: experimental/webgtt/build.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/algorithms.cc ('k') | experimental/webgtt/graph.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/webgtt/build.scons
diff --git a/experimental/webgtt/build.scons b/experimental/webgtt/build.scons
deleted file mode 100644
index ebe028492992fe8be2d0d8cb0a1fd2a6b63102b3..0000000000000000000000000000000000000000
--- a/experimental/webgtt/build.scons
+++ /dev/null
@@ -1,34 +0,0 @@
-#! -*- python -*-
-#
-# Copyright (c) 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 make_nacl_env
-import os
-
-EXPERIMENTAL_DIR = os.path.dirname(os.getcwd())
-
-nacl_env = make_nacl_env.NaClEnvironment(
- use_c_plus_plus_libs=True, nacl_platform=os.getenv('NACL_TARGET_PLATFORM'))
-nacl_env.Append(
- # Add a CPPPATH that enables the full-path #include directives, such as
- # #include "examples/sine_synth/sine_synth.h"
- CPPPATH=[
- EXPERIMENTAL_DIR,
- os.path.dirname(EXPERIMENTAL_DIR),
- os.path.join(os.path.dirname(EXPERIMENTAL_DIR), 'third_party'),
- ],
- # Strict ANSI compliance.
- EXTRA_CCFLAGS=['-pedantic'],
- )
-
-sources = [
- 'algorithms.cc',
- 'graph.cc',
- 'parser.cc',
- 'taskmap.cc',
- 'webgtt.cc',
- ]
-
-nacl_env.AllNaClModules(sources, 'webgtt')
« no previous file with comments | « experimental/webgtt/algorithms.cc ('k') | experimental/webgtt/graph.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698