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

Unified Diff: src/trusted/validator/x86/ncval_seg_sfi/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 side-by-side diff with in-line comments
Download patch
Index: src/trusted/validator/x86/ncval_seg_sfi/build.scons
diff --git a/src/trusted/validator/x86/ncval_seg_sfi/build.scons b/src/trusted/validator/x86/ncval_seg_sfi/build.scons
deleted file mode 100644
index 8ccdd43f6f2b419d4a3cb06c0135f87b0a6a8590..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/ncval_seg_sfi/build.scons
+++ /dev/null
@@ -1,39 +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 os
-import sys
-Import('env')
-
-#
-#
-# Build x86 only pieces
-#
-#
-if not env.Bit('target_x86'): Return()
-
-# TODO(bradchen): eliminate need for the following line
-env.FilterOut(CCFLAGS=['-Wextra', '-Wswitch-enum', '-Wsign-compare'])
-
-# Create environment for command-line tools and testing, rather than
-# part of the TCB. Then define compile-time flag that communicates
-# that we are compiling in the test environment (rather than for the TCB).
-test_env = env.Clone()
-test_env.Append(CCFLAGS=['-DNACL_TRUSTED_BUT_NOT_TCB'])
-
-# Special purpose partial decoder used by the ncval_seg_sfi (x86-32 bit validator).
-env.ComponentLibrary(env.NaClTargetArchSuffix('ncdis_seg_sfi'),
- ['ncdecode.c'])
-
-# Segment register validator library
-env.ComponentLibrary(env.NaClTargetArchSuffix('ncval_seg_sfi'),
- ['ncvalidate.c',
- 'ncvalidate_detailed.c'
- ])
-
-# Verbose version of segment register validator library.
-env.ComponentLibrary(env.NaClTargetArchSuffix('ncdis_seg_sfi_verbose'),
- ['ncdecode_verbose.c'])

Powered by Google App Engine
This is Rietveld 408576698