summaryrefslogtreecommitdiff
path: root/chromium/native_client/src/trusted/platform_qualify/platform_qualify.gyp
blob: 361ece6e33694119711d5f02f9a48d1f5315b987 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# 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.

{
  'variables': {
  },
  'includes': [
    '../../../build/common.gypi',
  ],
  'target_defaults': {
    'variables':{
      'target_base': 'none',
    },
    'target_conditions': [
      ['target_base=="pqlib"', {
        'sources': [
          'kernel_version.h',
          'nacl_dep_qualify.h',
          'nacl_os_qualify.h',
        ],
        'conditions': [
          ['OS=="linux"', {
            'sources': [
              'linux/nacl_os_qualify.c',
              'linux/sysv_shm_and_mmap.c',
              'posix/nacl_dep_qualify.c',
            ],
          }],
          ['OS=="mac"', {
            'sources': [
              'osx/nacl_os_qualify.c',
              'posix/nacl_dep_qualify.c',
            ],
          }],
          ['OS=="win"', {
            'sources': [
              'win/nacl_dep_qualify.c',
              'win/nacl_os_qualify.c',
            ],
          }],
          # x86 common sources
          ['target_arch=="ia32" or target_arch=="x64"', {
            'sources': [
              'arch/x86/nacl_cpuwhitelist.c',
              #'arch/x86/vcpuid.h',
              #'arch/x86/vcpuid.c',
            ],
          }],
          # x86-32 specifics
          ['target_arch=="ia32"', {
            'sources': [
              'arch/x86_32/nacl_dep_qualify_arch.c',
            ],
          }],
          # x86-64 specifics
          ['target_arch=="x64"', {
            'sources': [
              'arch/x86_64/nacl_dep_qualify_arch.c',
            ],
          }],
          # arm specifics
          ['target_arch=="arm"', {
            'sources': [
              'arch/arm/nacl_dep_qualify_arch.c',
              'arch/arm/nacl_qualify_fpu.c',
              'arch/arm/nacl_qualify_sandbox_instrs.c',
              'arch/arm/nacl_qualify_unaligned.c',
            ],
          }],
        ],
      }],
    ],
  },
  'targets': [
    {
      'target_name': 'platform_qual_lib',
      'type': 'static_library',
      'variables': {
        'target_base': 'pqlib',
      },
      'dependencies': [
        '<(DEPTH)/native_client/src/trusted/cpu_features/cpu_features.gyp:cpu_features',
      ],
    },
  ],
  'conditions': [
    ['OS=="win" and target_arch=="ia32"', {
      'targets': [
        {
          'target_name': 'platform_qual_lib64',
          'type': 'static_library',
          'variables': {
            'target_base': 'pqlib',
            'win_target': 'x64',
          },
          'dependencies': [
            '<(DEPTH)/native_client/src/trusted/cpu_features/cpu_features.gyp:cpu_features64',
          ],
        },
      ],
    }],
  ],
}

# TODO:
# # Currently, this is only defined for x86, so only compile if x86.
# if env['TARGET_ARCHITECTURE'] != 'x86':
#   Return()
#vcpuid_env = env.Clone()
#if env.Bit('mac'):
#  vcpuid_env.Append(CCFLAGS = ['-mdynamic-no-pic'])
#if env.Bit('linux'):
#  vcpuid_env.Append(CCFLAGS = ['-msse3'])
#nacl_vcpuid = vcpuid_env.ComponentLibrary('vcpuid', 'vcpuid.c')
#env.Append(LIBS = ['vcpuid', 'platform_qual_lib', 'ncvalidate'])
#
#env.ComponentProgram('platform_qual_test', 'platform_qual_test.c')
#env.ComponentProgram('nacl_cpuwhitelist_test', 'nacl_cpuwhitelist_test.c')
#