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

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

Issue 12226019: Move bitmap manipulation functions in bitmap.h (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 7 years, 10 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
1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Build the specific library dependencies for validating on x86-32 using the 5 # Build the specific library dependencies for validating on x86-32 using the
6 # DFA-based validator. 6 # DFA-based validator.
7 { 7 {
8 'includes': [ 8 'includes': [
9 '../../../build/common.gypi', 9 '../../../build/common.gypi',
10 ], 10 ],
11 'target_defaults': {
halyavin 2013/02/06 02:30:08 Is it needed for this CL?
khim 2013/02/06 08:01:49 No, it's in the same client :-( Removed.
12 'defines': [ 'NACL_TRUSTED_BUT_NOT_TCB' ],
13 },
14 'conditions': [ 11 'conditions': [
15 ['target_arch=="ia32"', { 12 ['target_arch=="ia32"', {
16 'targets': [ 13 'targets': [
17 { 14 {
18 'target_name': 'dfa_validate_x86_32', 15 'target_name': 'dfa_validate_x86_32',
19 'type': 'static_library', 16 'type': 'static_library',
20 'sources' : [ 17 'sources' : [
21 'unreviewed/dfa_validate_32.c', 18 'unreviewed/dfa_validate_32.c',
22 'unreviewed/dfa_validate_common.c', 19 'unreviewed/dfa_validate_common.c',
23 'unreviewed/validator_features_validator.c', 20 'unreviewed/validator_features_validator.c',
24 'gen/validator_x86_32.c', 21 'gen/validator_x86_32.c',
25 ], 22 ],
26 }, 23 },
27 ], 24 ],
28 }], 25 }],
29 [ 'target_arch=="arm" or target_arch=="x64"', { 26 [ 'target_arch=="arm" or target_arch=="x64"', {
30 'targets': [] 27 'targets': []
31 }], 28 }],
32 ], 29 ],
33 } 30 }
34 31
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698