summaryrefslogtreecommitdiff
path: root/chromium/native_client/src/trusted/validator_ragel/dfa_validator_x86_32.gyp
blob: e108509ed737b945e4fdc0fcd75bee3b1ee8578d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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',
  ],
  'conditions': [
    ['target_arch=="ia32"', {
      'targets': [
        {
          'target_name': 'dfa_validate_x86_32',
          'type': 'static_library',
          'sources' : [
            'dfa_validate_32.c',
            'dfa_validate_common.c',
            'validator_features_validator.c',
            'gen/validator_x86_32.c',
          ],
        },
      ],
    }],
    [ 'target_arch=="arm" or target_arch=="x64"', {
      'targets': []
    }],
  ],
}