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

Unified Diff: src/trusted/validator/x86/ncval_seg_sfi/build.scons

Issue 7649021: Separate the (partial) decoder of the x86_32 validator into a separate library. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 9 years, 4 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 | « site_scons/site_tools/library_deps.py ('k') | src/trusted/validator/x86/ncval_seg_sfi/ncdecode.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator/x86/ncval_seg_sfi/build.scons
===================================================================
--- src/trusted/validator/x86/ncval_seg_sfi/build.scons (revision 6419)
+++ src/trusted/validator/x86/ncval_seg_sfi/build.scons (working copy)
@@ -34,13 +34,16 @@
test_env = env.Clone();
test_env.Append(CCFLAGS=['-DNACL_TRUSTED_BUT_NOT_TCB'])
+# Special purpose partial decoder used by the ncval_seg_sfi (x86-32 bit validator).
+env.ComponentLibrary(env.NaClTargetArchSuffix('ncdis_seg_sfi'),
+ ['ncdecode.c'])
+
# Segment register validator library
env.ComponentLibrary(env.NaClTargetArchSuffix('ncval_seg_sfi'),
- ['ncdecode.c',
- 'ncvalidate.c',
+ ['ncvalidate.c',
'ncvalidate_detailed.c'
])
# Verbose version of segment register validator library.
-env.ComponentLibrary(env.NaClTargetArchSuffix('ncval_seg_sfi_verbose'),
+env.ComponentLibrary(env.NaClTargetArchSuffix('ncdis_seg_sfi_verbose'),
['ncdecode_verbose.c'])
« no previous file with comments | « site_scons/site_tools/library_deps.py ('k') | src/trusted/validator/x86/ncval_seg_sfi/ncdecode.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698