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

Side by Side Diff: src/trusted/validator/x86/64/build.scons

Issue 636933004: stop building/testing old x86 validator. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebase master Created 6 years, 2 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
OLDNEW
(Empty)
1 # -*- python -*-
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 import os
7 import sys
8 Import('env')
9
10 #
11 #
12 # Now build x86_64 specific library.
13 #
14 #
15 if not env.Bit('target_x86_64'): Return()
16
17 # Create environment for command-line tool usage.
18
19 cl_env = env.Clone()
20 cl_env.Append(CPPPATH=['${TARGET_ROOT}'])
21 cl_env.Append(CCFLAGS=['-DNACL_TRUSTED_BUT_NOT_TCB'])
22 cl_env.FilterOut(CCFLAGS=['-Wextra', '-Wswitch-enum', '-Wsign-compare'])
23
24 cl_env.ComponentLibrary('ncvalidate_x86_64', ['ncvalidate.c'])
25
26 cl_env.ComponentLibrary('ncvalidate_verbose_x86_64', ['ncvalidate_verbose.c'])
27
OLDNEW
« no previous file with comments | « src/trusted/validator/x86/32/build.scons ('k') | src/trusted/validator/x86/64/validator_x86_64.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698