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

Unified Diff: src/trusted/validator/x86/decoder/ncval_x86_decoder.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/decoder/ncval_x86_decoder.gyp
diff --git a/src/trusted/validator/x86/decoder/ncval_x86_decoder.gyp b/src/trusted/validator/x86/decoder/ncval_x86_decoder.gyp
deleted file mode 100644
index 34c0ede3c797aab7398d9be092fa768b80591a61..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/decoder/ncval_x86_decoder.gyp
+++ /dev/null
@@ -1,178 +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.
-
-# Build the specific library dependencies for decoding x86 instructions.
-# Used to define a "full" decoder (used by ncdis). Currently used to decode
-# instructions for the x86-64 validator. Future plans is to encorporate the
-# decoder into the x86-32 validator.
-{
- 'includes': [
- '../../../../../build/common.gypi',
- ],
- 'target_defaults': {
- 'variables': {
- 'target_base': 'none',
- },
- 'target_conditions': [
- ['target_base=="nc_opcode_modeling"', {
- 'sources': ['ncopcode_desc.c'],
- 'cflags!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- 'xcode_settings': {
- 'WARNING_CFLAGS!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- },
- }],
- ['target_base=="nc_opcode_modeling_verbose"', {
- 'sources': ['ncopcode_desc_verbose.c'],
- 'cflags!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- 'xcode_settings': {
- 'WARNING_CFLAGS!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ]
- },
- }],
- ['target_base=="nc_decoder"', {
- 'sources': [
- 'nc_inst_iter.c',
- 'nc_inst_state.c',
- 'nc_inst_trans.c',
- 'ncop_exps.c',
- ],
- 'cflags!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- 'xcode_settings': {
- 'WARNING_CFLAGS!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- },
- }],
- ],
- },
- # ----------------------------------------------------------------------
- 'conditions': [
- ['target_arch=="ia32"', {
- 'targets': [
- {
- 'target_name': 'nc_opcode_modeling_x86_32',
- 'type': 'static_library',
- 'hard_dependency': 1,
- 'variables': {
- 'target_base': 'nc_opcode_modeling',
- },
- 'dependencies': [
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_x86_32',
- ],
- }, {
- 'target_name': 'nc_opcode_modeling_verbose_x86_32',
- 'type': 'static_library',
- 'hard_dependency': 1,
- 'variables': {
- 'target_base': 'nc_opcode_modeling_verbose',
- },
- 'dependencies': [
- 'nc_opcode_modeling_x86_32',
- ],
- }, {
- 'target_name': 'nc_decoder_x86_32',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'nc_decoder',
- },
- 'dependencies': [
- 'nc_opcode_modeling_x86_32',
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_x86_32',
- ],
- }],
- }],
- ['OS=="win" and target_arch=="ia32"', {
- 'targets': [
- {
- 'target_name': 'nc_opcode_modeling_x86_64',
- 'type': 'static_library',
- 'hard_dependency': 1,
- 'variables': {
- 'target_base': 'nc_opcode_modeling',
- 'win_target': 'x64',
- },
- 'dependencies': [
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_x86_64',
- ],
- }, {
- 'target_name': 'nc_opcode_modeling_verbose_x86_64',
- 'type': 'static_library',
- 'hard_dependency': 1,
- 'variables': {
- 'target_base': 'nc_opcode_modeling_verbose',
- 'win_target': 'x64',
- },
- 'dependencies': [
- 'nc_opcode_modeling_x86_64',
- ],
- }, {
- 'target_name': 'nc_decoder_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'nc_decoder',
- 'win_target': 'x64',
- },
- 'dependencies': [
- 'nc_opcode_modeling_x86_64',
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_x86_64',
- ],
- }],
- }],
- ['target_arch=="x64"', {
- 'targets': [
- {
- 'target_name': 'nc_opcode_modeling_x86_64',
- 'type': 'static_library',
- 'hard_dependency': 1,
- 'variables': {
- 'target_base': 'nc_opcode_modeling',
- },
- 'dependencies': [
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_x86_64',
- ],
- }, {
- 'target_name': 'nc_opcode_modeling_verbose_x86_64',
- 'type': 'static_library',
- 'hard_dependency': 1,
- 'variables': {
- 'target_base': 'nc_opcode_modeling_verbose',
- },
- 'dependencies': [
- 'nc_opcode_modeling_x86_64',
- ],
- }, {
- 'target_name': 'nc_decoder_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'nc_decoder',
- },
- 'dependencies': [
- 'nc_opcode_modeling_x86_64',
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_x86_64',
- ],
- }],
- }],
- ],
-}
« no previous file with comments | « src/trusted/validator/x86/decoder/generator/build.scons ('k') | src/trusted/validator/x86/ncval_reg_sfi/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698