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

Side by Side Diff: src/trusted/validator_ragel/dfa_validator_x86_32.gyp

Issue 10070010: validator_ragel: Link into TCB, use under env var (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: revert introducing extra empty line Created 8 years, 8 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
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # Build the specific library dependencies for validating on x86-32 using the
6 # DFA-based validator.
7 {
8 'includes': [
9 '../../../build/common.gypi',
10 ],
11 'target_defaults': {
12 'defines': [ 'NACL_TRUSTED_BUT_NOT_TCB' ],
13 },
14 'conditions': [
15 ['target_arch=="ia32"', {
16 'targets': [
17 {
18 'target_name': 'dfa_validate_x86_32',
19 'type': 'static_library',
20 'sources' : [
21 'unreviewed/dfa_validate_32.c',
22 'gen/validator-x86_32.c',
23 ],
24 },
25 ],
26 }],
27 [ 'target_arch=="arm" or target_arch=="x64"', {
28 'targets': []
29 }],
30 ],
31 }
32
OLDNEW
« no previous file with comments | « src/trusted/validator_ragel/build.scons ('k') | src/trusted/validator_ragel/dfa_validator_x86_64.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698