summaryrefslogtreecommitdiff
path: root/chromium/native_client/src/trusted/validator/driver/ncval.gyp
blob: 239b5607cf8adc89bcf409ffd3e9915f75e5bb27 (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
# Copyright (c) 2013 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.

{
  'includes': [
    '../../../../build/common.gypi',
  ],
  'conditions': [
    ['target_arch=="ia32" or target_arch=="x64"', {
      'targets': [
        {
          'target_name': 'ncval_new',
          'type': 'executable',
          'sources': ['ncval.cc', 'elf_load.cc'],
          'dependencies': [
            '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
            '<(DEPTH)/native_client/src/trusted/validator_arm/validator_arm.gyp:arm_validator_core',
            '<(DEPTH)/native_client/src/trusted/validator_arm/validator_arm.gyp:arm_validator_reporters',
            '<(DEPTH)/native_client/src/trusted/validator_ragel/rdfa_validator.gyp:rdfa_validator',
          ],
        },
      ]
    }],
  ],
}