| 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',
|
| + ],
|
| + },
|
| ],
|
| }],
|
| ],
|
|
|