Chromium Code Reviews| 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-32 using the | 5 # Build the specific library dependencies for validating on x86-32 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': { | |
|
halyavin
2013/02/06 02:30:08
Is it needed for this CL?
khim
2013/02/06 08:01:49
No, it's in the same client :-( Removed.
| |
| 12 'defines': [ 'NACL_TRUSTED_BUT_NOT_TCB' ], | |
| 13 }, | |
| 14 'conditions': [ | 11 'conditions': [ |
| 15 ['target_arch=="ia32"', { | 12 ['target_arch=="ia32"', { |
| 16 'targets': [ | 13 'targets': [ |
| 17 { | 14 { |
| 18 'target_name': 'dfa_validate_x86_32', | 15 'target_name': 'dfa_validate_x86_32', |
| 19 'type': 'static_library', | 16 'type': 'static_library', |
| 20 'sources' : [ | 17 'sources' : [ |
| 21 'unreviewed/dfa_validate_32.c', | 18 'unreviewed/dfa_validate_32.c', |
| 22 'unreviewed/dfa_validate_common.c', | 19 'unreviewed/dfa_validate_common.c', |
| 23 'unreviewed/validator_features_validator.c', | 20 'unreviewed/validator_features_validator.c', |
| 24 'gen/validator_x86_32.c', | 21 'gen/validator_x86_32.c', |
| 25 ], | 22 ], |
| 26 }, | 23 }, |
| 27 ], | 24 ], |
| 28 }], | 25 }], |
| 29 [ 'target_arch=="arm" or target_arch=="x64"', { | 26 [ 'target_arch=="arm" or target_arch=="x64"', { |
| 30 'targets': [] | 27 'targets': [] |
| 31 }], | 28 }], |
| 32 ], | 29 ], |
| 33 } | 30 } |
| 34 | 31 |
| OLD | NEW |