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

Side by Side Diff: src/tools/validator_tools/build.scons

Issue 10134056: Refactor the process of choosing validators. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: more aesthetics Created 8 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « site_scons/site_tools/library_deps.py ('k') | src/tools/validator_tools/ncstubout.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright 2010 The Native Client Authors. All rights reserved. 2 # Copyright 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can 3 # Use of this source code is governed by a BSD-style license that can
4 # be found in the LICENSE file. 4 # be found in the LICENSE file.
5 5
6 Import('env') 6 Import('env')
7 7
8 # TODO(mseaborn): Extend the ARM validator to support this. 8 # TODO(mseaborn): Extend the ARM validator to support this.
9 if not env.Bit('target_x86'): Return() 9 if not env.Bit('target_x86'): Return()
10 10
11 # Create environment for command-line tools and testing. 11 # Create environment for command-line tools and testing.
12 env.Append(CCFLAGS=['-DNACL_TRUSTED_BUT_NOT_TCB']) 12 env.Append(CCFLAGS=['-DNACL_TRUSTED_BUT_NOT_TCB'])
13 13
14 env.ComponentProgram( 14 env.ComponentProgram(
15 'ncval_stubout', 15 'ncval_stubout',
16 'ncstubout.c', 16 'ncstubout.c',
17 EXTRA_LIBS=[env.NaClTargetArchSuffix('ncvalidate_verbose')]) 17 EXTRA_LIBS=['validators', env.NaClTargetArchSuffix('ncvalidate_verbose')])
OLDNEW
« no previous file with comments | « site_scons/site_tools/library_deps.py ('k') | src/tools/validator_tools/ncstubout.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698