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

Unified Diff: src/trusted/validator/x86/validate_x86.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
« no previous file with comments | « src/trusted/validator/x86/testing/enuminsts/build.scons ('k') | src/trusted/validator_ragel/build.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator/x86/validate_x86.gyp
diff --git a/src/trusted/validator/x86/validate_x86.gyp b/src/trusted/validator/x86/validate_x86.gyp
deleted file mode 100644
index 059d16d4c8047415b5dd2988f4f689254d19fd58..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/validate_x86.gyp
+++ /dev/null
@@ -1,139 +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 validating x86 code, used
-# by both the x86-32 and x86-64 validators.
-# Note: Would like to name this file validator_x86.gyp, but that name is
-# already used, and on mac's, this is not allowed.
-{
- 'includes': [
- '../../../../build/common.gypi',
- ],
- 'target_defaults': {
- 'variables': {
- 'target_base': 'none',
- },
- 'target_conditions': [
- ['target_base=="ncval_base"', {
- 'sources': [
- 'error_reporter.c',
- 'halt_trim.c',
- 'ncinstbuffer.c',
- 'x86_insts.c',
- 'nc_segment.c',
- ],
- 'cflags!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- # 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,
- 'xcode_settings': {
- 'WARNING_CFLAGS!': [
- '-Wextra',
- '-Wswitch-enum',
- '-Wsign-compare'
- ],
- },
- }],
- ['target_base=="ncval_base_verbose"', {
- 'sources': [
- 'error_reporter_verbose.c',
- 'x86_insts_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_base_x86_32',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncval_base',
- },
- 'dependencies': [
- '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
- '<(DEPTH)/native_client/src/trusted/cpu_features/cpu_features.gyp:cpu_features',
- '<(DEPTH)/native_client/src/trusted/validator/validator.gyp:validation_cache',
- ],
- },
- { 'target_name': 'ncval_base_verbose_x86_32',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncval_base_verbose',
- },
- 'dependencies': [
- 'ncval_base_x86_32',
- ],
- },
- ],
- }],
- ['OS=="win" and target_arch=="ia32"', {
- 'targets': [
- { 'target_name': 'ncval_base_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncval_base',
- 'win_target': 'x64',
- },
- 'dependencies': [
- '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64',
- '<(DEPTH)/native_client/src/trusted/cpu_features/cpu_features.gyp:cpu_features64',
- '<(DEPTH)/native_client/src/trusted/validator/validator.gyp:validation_cache64',
- ],
- },
- { 'target_name': 'ncval_base_verbose_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncval_base_verbose',
- 'win_target': 'x64',
- 'dependencies': [
- 'ncval_base_x86_64',
- ],
- },
- },
- ],
- }],
- ['target_arch=="x64"', {
- 'targets': [
- { 'target_name': 'ncval_base_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncval_base',
- },
- 'dependencies': [
- '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
- '<(DEPTH)/native_client/src/trusted/cpu_features/cpu_features.gyp:cpu_features',
- '<(DEPTH)/native_client/src/trusted/validator/validator.gyp:validation_cache',
- ],
- },
- { 'target_name': 'ncval_base_verbose_x86_64',
- 'type': 'static_library',
- 'variables': {
- 'target_base': 'ncval_base_verbose',
- },
- 'dependencies': [
- 'ncval_base_x86_64',
- ],
- },
- ],
- }],
- ],
-}
« no previous file with comments | « src/trusted/validator/x86/testing/enuminsts/build.scons ('k') | src/trusted/validator_ragel/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698