Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / native_client / src / trusted / validator / validator.gyp
1 # -*- gyp -*-
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 {
7   'includes': [
8     '../../../build/common.gypi',
9   ],
10   'targets': [
11     {
12       'target_name': 'validators',
13       'type': 'static_library',
14       'sources' : [
15         'validator_init.c',
16       ],
17     },
18     {
19       'target_name': 'validation_cache',
20       'type': 'static_library',
21       'sources' : [
22         'validation_cache.c',
23       ],
24       'dependencies': [
25         '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
26       ],
27     },
28   ],
29   'conditions': [
30     ['OS=="win" and target_arch=="ia32"', {
31       'targets': [
32         {
33           'target_name': 'validators64',
34           'type': 'static_library',
35           'sources' : [
36             'validator_init.c',
37           ],
38           'variables': {
39             'win_target': 'x64',
40           },
41         },
42         {
43           'target_name': 'validation_cache64',
44           'type': 'static_library',
45           'sources' : [
46             'validation_cache.c',
47           ],
48           'variables': {
49             'win_target': 'x64',
50           },
51           'dependencies': [
52             '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64',
53           ],
54         },
55       ],
56     }],
57   ],
58 }