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

Unified 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: . 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 side-by-side diff with in-line comments
Download patch
Index: src/trusted/validator_ragel/dfa_validator_x86_32.gyp
diff --git a/src/trusted/validator_ragel/dfa_validator_x86_32.gyp b/src/trusted/validator_ragel/dfa_validator_x86_32.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..8f3a20c4a53fd5689feffb38efbbc736c575cef1
--- /dev/null
+++ b/src/trusted/validator_ragel/dfa_validator_x86_32.gyp
@@ -0,0 +1,32 @@
+# Copyright (c) 2012 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 on x86-32 using the
+# DFA-based validator.
+{
+ 'includes': [
+ '../../../build/common.gypi',
+ ],
+ 'target_defaults': {
+ 'defines': [ 'NACL_TRUSTED_BUT_NOT_TCB' ],
+ },
+ 'conditions': [
+ ['target_arch=="ia32"', {
+ 'targets': [
+ {
+ 'target_name': 'dfa_validate_x86_32',
+ 'type': 'static_library',
+ 'sources' : [
+ 'unreviewed/dfa_validate_32.c',
+ 'gen/validator-x86_32.c',
+ ],
+ },
+ ],
+ }],
+ [ 'target_arch=="arm" or target_arch=="x64"', {
+ 'targets': []
+ }],
+ ],
+}
+

Powered by Google App Engine
This is Rietveld 408576698