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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « experimental/webgtt/algorithms.cc ('k') | experimental/webgtt/graph.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #! -*- python -*-
2 #
3 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 import make_nacl_env
8 import os
9
10 EXPERIMENTAL_DIR = os.path.dirname(os.getcwd())
11
12 nacl_env = make_nacl_env.NaClEnvironment(
13 use_c_plus_plus_libs=True, nacl_platform=os.getenv('NACL_TARGET_PLATFORM'))
14 nacl_env.Append(
15 # Add a CPPPATH that enables the full-path #include directives, such as
16 # #include "examples/sine_synth/sine_synth.h"
17 CPPPATH=[
18 EXPERIMENTAL_DIR,
19 os.path.dirname(EXPERIMENTAL_DIR),
20 os.path.join(os.path.dirname(EXPERIMENTAL_DIR), 'third_party'),
21 ],
22 # Strict ANSI compliance.
23 EXTRA_CCFLAGS=['-pedantic'],
24 )
25
26 sources = [
27 'algorithms.cc',
28 'graph.cc',
29 'parser.cc',
30 'taskmap.cc',
31 'webgtt.cc',
32 ]
33
34 nacl_env.AllNaClModules(sources, 'webgtt')
OLDNEW
« 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