| OLD | NEW |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Build the specific library dependencies for validating on x86-64 using the | 5 # Build the specific library dependencies for validating on x86-64 using the |
| 6 # DFA-based validator. | 6 # DFA-based validator. |
| 7 { | 7 { |
| 8 'includes': [ | 8 'includes': [ |
| 9 '../../../build/common.gypi', | 9 '../../../build/common.gypi', |
| 10 ], | 10 ], |
| 11 'target_defaults': { | 11 'target_defaults': { |
| 12 'defines': [ 'NACL_TRUSTED_BUT_NOT_TCB' ], | |
| 13 'conditions': [ | 12 'conditions': [ |
| 14 ['OS=="win" and target_arch=="ia32"', { | 13 ['OS=="win" and target_arch=="ia32"', { |
| 15 'variables': { | 14 'variables': { |
| 16 'win_target': 'x64', | 15 'win_target': 'x64', |
| 17 }, | 16 }, |
| 18 }], | 17 }], |
| 19 ], | 18 ], |
| 20 }, | 19 }, |
| 21 'conditions': [ | 20 'conditions': [ |
| 22 ['OS=="win" or target_arch=="x64"', { | 21 ['OS=="win" or target_arch=="x64"', { |
| 23 'targets': [ | 22 'targets': [ |
| 24 { | 23 { |
| 25 'target_name': 'dfa_validate_x86_64', | 24 'target_name': 'dfa_validate_x86_64', |
| 26 'type': 'static_library', | 25 'type': 'static_library', |
| 27 'sources' : [ | 26 'sources' : [ |
| 28 'unreviewed/dfa_validate_64.c', | 27 'unreviewed/dfa_validate_64.c', |
| 29 'unreviewed/dfa_validate_common.c', | 28 'unreviewed/dfa_validate_common.c', |
| 30 'unreviewed/validator_features_validator.c', | 29 'unreviewed/validator_features_validator.c', |
| 31 'gen/validator_x86_64.c', | 30 'gen/validator_x86_64.c', |
| 32 ], | 31 ], |
| 33 }, | 32 }, |
| 34 ], | 33 ], |
| 35 }], | 34 }], |
| 36 [ 'target_arch=="arm" or target_arch=="ia32"', { | 35 [ 'target_arch=="arm" or target_arch=="ia32"', { |
| 37 'targets': [] | 36 'targets': [] |
| 38 }], | 37 }], |
| 39 ], | 38 ], |
| 40 } | 39 } |
| 41 | 40 |
| OLD | NEW |