OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # Build the specific library dependencies for validating on x86-32 using the |
| 6 # DFA-based validator. |
| 7 { |
| 8 'includes': [ |
| 9 '../../../build/common.gypi', |
| 10 ], |
| 11 'target_defaults': { |
| 12 'defines': [ 'NACL_TRUSTED_BUT_NOT_TCB' ], |
| 13 }, |
| 14 'conditions': [ |
| 15 ['target_arch=="ia32"', { |
| 16 'targets': [ |
| 17 { |
| 18 'target_name': 'dfa_validate_x86_32', |
| 19 'type': 'static_library', |
| 20 'sources' : [ |
| 21 'unreviewed/dfa_validate_32.c', |
| 22 'gen/validator-x86_32.c', |
| 23 ], |
| 24 }, |
| 25 ], |
| 26 }], |
| 27 [ 'target_arch=="arm" or target_arch=="x64"', { |
| 28 'targets': [] |
| 29 }], |
| 30 ], |
| 31 } |
| 32 |
OLD | NEW |