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

Unified Diff: src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp

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_reg_sfi/ncval_reg_sfi.gyp
diff --git a/src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp b/src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp
deleted file mode 100644
index 67c53e9790d61e9e04a505f0a01bc0c7e8f822c3..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp
+++ /dev/null
@@ -1,137 +0,0 @@
-# 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.
-
-# TODO(bradchen): eliminate need for the warning flag removals below
-{
- 'includes': [
- '../../../../../build/common.gypi',
- ],
- 'target_defaults': {
- 'variables': {
- 'target_base': 'none',
- },
- 'target_conditions': [
- ['target_base=="ncval_reg_sfi"', {
- # we depend on ncvalidate build to generate the headers
- 'sources': [ 'ncvalidate_iter.c',
- 'ncvalidate_iter_detailed.c',
- 'nc_cpu_checks.c',
- 'nc_illegal.c',
- 'nc_jumps.c',
- 'address_sets.c',
- 'nc_jumps_detailed.c',
- 'nc_opcode_histogram.c',
- 'nc_protect_base.c',
- 'nc_memory_protect.c',
- 'ncvalidate_utils.c',
- 'ncval_decode_tables.c',
- ],
- 'cflags!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- 'xcode_settings': {
- 'WARNING_CFLAGS!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ]
- },
- }],
- ['target_base=="ncval_reg_sfi_verbose"', {
- 'sources': ['ncvalidate_iter_verbose.c'],
- 'cflags!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- 'xcode_settings': {
- 'WARNING_CFLAGS!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ]
- },
- }],
- ],
- },
- # ----------------------------------------------------------------------
- 'conditions': [
- ['target_arch=="ia32"', {
- 'targets': [
- {
- 'target_name': 'ncval_reg_sfi_x86_32',
- 'type': 'static_library',
- 'dependencies': [
- '<(DEPTH)/native_client/src/trusted/validator_x86/validator_x86.gyp:nccopy_x86_32',
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_x86_32',
- '<(DEPTH)/native_client/src/trusted/validator/x86/decoder/ncval_x86_decoder.gyp:nc_decoder_x86_32',
- ],
- 'variables': {
- 'target_base': 'ncval_reg_sfi',
- },
- }, {
- 'target_name': 'ncval_reg_sfi_verbose_x86_32',
- 'type': 'static_library',
- 'dependencies': [
- 'ncval_reg_sfi_x86_32',
- ],
- 'variables': {
- 'target_base': 'ncval_reg_sfi_verbose',
- },
- }],
- }],
- ['OS=="win" and target_arch=="ia32"', {
- 'targets': [
- {
- 'target_name': 'ncval_reg_sfi_x86_64',
- 'type': 'static_library',
- 'dependencies': [
- '<(DEPTH)/native_client/src/trusted/validator_x86/validator_x86.gyp:nccopy_x86_64',
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_x86_64',
- '<(DEPTH)/native_client/src/trusted/validator/x86/decoder/ncval_x86_decoder.gyp:nc_decoder_x86_64',
- ],
- 'variables': {
- 'target_base': 'ncval_reg_sfi',
- 'win_target': 'x64',
- },
- }, {
- 'target_name': 'ncval_reg_sfi_verbose_x86_64',
- 'type': 'static_library',
- 'dependencies': [
- 'ncval_reg_sfi_x86_64',
- ],
- 'variables': {
- 'target_base': 'ncval_reg_sfi_verbose',
- 'win_target': 'x64',
- },
- }],
- }],
- ['target_arch=="x64"', {
- 'targets': [
- {
- 'target_name': 'ncval_reg_sfi_x86_64',
- 'type': 'static_library',
- 'dependencies': [
- '<(DEPTH)/native_client/src/trusted/validator_x86/validator_x86.gyp:nccopy_x86_64',
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_x86_64',
- '<(DEPTH)/native_client/src/trusted/validator/x86/decoder/ncval_x86_decoder.gyp:nc_decoder_x86_64',
- ],
- 'variables': {
- 'target_base': 'ncval_reg_sfi',
- },
- }, {
- 'target_name': 'ncval_reg_sfi_verbose_x86_64',
- 'type': 'static_library',
- 'dependencies': [
- 'ncval_reg_sfi_x86_64',
- ],
- 'variables': {
- 'target_base': 'ncval_reg_sfi_verbose',
- },
- }],
- }],
- ],
-}
« no previous file with comments | « src/trusted/validator/x86/ncval_reg_sfi/build.scons ('k') | src/trusted/validator/x86/ncval_seg_sfi/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698