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

Unified Diff: src/trusted/validator/validator.gyp

Issue 12600034: Provide metadata to validator to allow faster caching. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: First fixes Created 7 years, 9 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 | « src/trusted/validator/validation_metadata.h ('k') | src/trusted/validator/x86/32/ncvalidate.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator/validator.gyp
diff --git a/src/trusted/validator/validator.gyp b/src/trusted/validator/validator.gyp
index 18ea29690ede933d85489812bc95f0479f29a2bc..d866dea482228821a0dce3db1cc862690399be15 100644
--- a/src/trusted/validator/validator.gyp
+++ b/src/trusted/validator/validator.gyp
@@ -22,6 +22,16 @@
}],
],
},
+ {
+ 'target_name': 'validation_cache',
+ 'type': 'static_library',
+ 'sources' : [
+ 'validation_cache.c',
+ ],
+ 'dependencies': [
+ '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
+ ],
+ },
],
'conditions': [
['OS=="win"', {
@@ -43,6 +53,19 @@
}],
],
},
+ {
+ 'target_name': 'validation_cache64',
+ 'type': 'static_library',
+ 'sources' : [
+ 'validation_cache.c',
+ ],
+ 'variables': {
+ 'win_target': 'x64',
+ },
+ 'dependencies': [
+ '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64',
+ ],
+ },
Sam Clegg 2013/04/03 16:27:06 I think this change breaks the chrome win64 build:
],
}],
],
« no previous file with comments | « src/trusted/validator/validation_metadata.h ('k') | src/trusted/validator/x86/32/ncvalidate.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698