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

Side by Side Diff: src/trusted/validator/validator.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/trusted/validator/nacl.scons ('k') | src/trusted/validator/validator_init.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- gyp -*- 1 # -*- gyp -*-
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'includes': [ 7 'includes': [
8 '../../../build/common.gypi', 8 '../../../build/common.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'validators', 12 'target_name': 'validators',
13 'type': 'static_library', 13 'type': 'static_library',
14 'sources' : [ 14 'sources' : [
15 'validator_init.c', 15 'validator_init.c',
16 ], 16 ],
17 'conditions': [
18 ['nacl_validator_ragel!=0', {
19 'defines': [
20 'NACL_VALIDATOR_RAGEL=1',
21 ],
22 }],
23 ],
24 }, 17 },
25 { 18 {
26 'target_name': 'validation_cache', 19 'target_name': 'validation_cache',
27 'type': 'static_library', 20 'type': 'static_library',
28 'sources' : [ 21 'sources' : [
29 'validation_cache.c', 22 'validation_cache.c',
30 ], 23 ],
31 'dependencies': [ 24 'dependencies': [
32 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', 25 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
33 ], 26 ],
34 }, 27 },
35 ], 28 ],
36 'conditions': [ 29 'conditions': [
37 ['OS=="win" and target_arch=="ia32"', { 30 ['OS=="win" and target_arch=="ia32"', {
38 'targets': [ 31 'targets': [
39 { 32 {
40 'target_name': 'validators64', 33 'target_name': 'validators64',
41 'type': 'static_library', 34 'type': 'static_library',
42 'sources' : [ 35 'sources' : [
43 'validator_init.c', 36 'validator_init.c',
44 ], 37 ],
45 'variables': { 38 'variables': {
46 'win_target': 'x64', 39 'win_target': 'x64',
47 }, 40 },
48 'conditions': [
49 ['nacl_validator_ragel!=0', {
50 'defines': [
51 'NACL_VALIDATOR_RAGEL=1',
52 ],
53 }],
54 ],
55 }, 41 },
56 { 42 {
57 'target_name': 'validation_cache64', 43 'target_name': 'validation_cache64',
58 'type': 'static_library', 44 'type': 'static_library',
59 'sources' : [ 45 'sources' : [
60 'validation_cache.c', 46 'validation_cache.c',
61 ], 47 ],
62 'variables': { 48 'variables': {
63 'win_target': 'x64', 49 'win_target': 'x64',
64 }, 50 },
65 'dependencies': [ 51 'dependencies': [
66 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64' , 52 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64' ,
67 ], 53 ],
68 }, 54 },
69 ], 55 ],
70 }], 56 }],
71 ], 57 ],
72 } 58 }
OLDNEW
« no previous file with comments | « src/trusted/validator/nacl.scons ('k') | src/trusted/validator/validator_init.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698