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

Unified Diff: src/trusted/validator/x86/ncval_seg_sfi/ncval_seg_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_seg_sfi/ncval_seg_sfi.gyp
diff --git a/src/trusted/validator/x86/ncval_seg_sfi/ncval_seg_sfi.gyp b/src/trusted/validator/x86/ncval_seg_sfi/ncval_seg_sfi.gyp
deleted file mode 100644
index 9513377ed42e4c7ce6748e077cbacd30bf927614..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/ncval_seg_sfi/ncval_seg_sfi.gyp
+++ /dev/null
@@ -1,176 +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=="ncdis_seg_sfi"', {
- 'sources': [
- 'ncdecode.c',
- ],
- 'cflags!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- 'xcode_settings': {
- 'WARNING_CFLAGS!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- },
- }],
- ['target_base=="ncdis_seg_sfi_verbose"', {
- 'sources': [
- 'ncdecode_verbose.c',
- ],
- 'cflags!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- 'xcode_settings': {
- 'WARNING_CFLAGS!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- },
- }],
- ['target_base=="ncval_seg_sfi"', {
- 'sources': [
- 'ncvalidate.c',
- 'ncvalidate_detailed.c',
- ],
- 'cflags!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- 'xcode_settings': {
- 'WARNING_CFLAGS!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- },
- }],
- ],
- },
- # ----------------------------------------------------------------------
- 'conditions': [
- ['target_arch=="ia32"', {
- 'targets': [
- {
- 'target_name': 'ncdis_seg_sfi_x86_32',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncdis_seg_sfi',
- },
- }, {
- 'target_name': 'ncdis_seg_sfi_verbose_x86_32',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncdis_seg_sfi_verbose',
- },
- 'dependencies': [
- 'ncdis_seg_sfi_x86_32',
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_verbose_x86_32'
- ],
- 'hard_dependency': 1,
- }, {
- 'target_name': 'ncval_seg_sfi_x86_32',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncval_seg_sfi',
- },
- 'dependencies': [
- 'ncdis_seg_sfi_x86_32',
- '<(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'
- ],
- 'hard_dependency': 1,
- # VS2010 does not correctly incrementally link obj files generated
- # from asm files. This flag disables UseLibraryDependencyInputs to
- # avoid this problem.
- 'msvs_2010_disable_uldi_when_referenced': 1,
- }],
- }],
- ['OS=="win" and target_arch=="ia32"', {
- 'targets': [
- {
- 'target_name': 'ncdis_seg_sfi_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncdis_seg_sfi',
- 'win_target': 'x64',
- },
- }, {
- 'target_name': 'ncdis_seg_sfi_verbose_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncdis_seg_sfi_verbose',
- 'win_target': 'x64',
- },
- 'dependencies': [
- 'ncval_seg_sfi_x86_64',
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_verbose_x86_64'
- ],
- 'hard_dependency': 1,
- }, {
- 'target_name': 'ncval_seg_sfi_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncval_seg_sfi',
- 'win_target': 'x64',
- },
- 'dependencies': [
- 'ncdis_seg_sfi_x86_64',
- '<(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'
- ],
- 'hard_dependency': 1,
- }],
- }],
- ['target_arch=="x64"', {
- 'targets': [
- {
- 'target_name': 'ncdis_seg_sfi_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncdis_seg_sfi',
- },
- }, {
- 'target_name': 'ncdis_seg_sfi_verbose_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncdis_seg_sfi_verbose',
- },
- 'dependencies': [
- 'ncval_seg_sfi_x86_64',
- '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:ncval_base_verbose_x86_64' ],
- 'hard_dependency': 1,
- }, {
- 'target_name': 'ncval_seg_sfi_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncval_seg_sfi',
- },
- 'dependencies': [
- 'ncdis_seg_sfi_x86_64',
- '<(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' ],
- 'hard_dependency': 1,
- }],
- }],
- ],
-}
« no previous file with comments | « src/trusted/validator/x86/ncval_seg_sfi/generator/build.scons ('k') | src/trusted/validator/x86/testing/enuminsts/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698