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-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 ], |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 25 'type': 'static_library', | 25 'type': 'static_library', |
| 26 'sources' : [ | 26 'sources' : [ |
| 27 'dfa_validate_64.c', | 27 'dfa_validate_64.c', |
| 28 'dfa_validate_common.c', | 28 'dfa_validate_common.c', |
| 29 'validator_features_validator.c', | 29 'validator_features_validator.c', |
| 30 'gen/validator_x86_64.c', | 30 'gen/validator_x86_64.c', |
| 31 ], | 31 ], |
| 32 }, | 32 }, |
| 33 ], | 33 ], |
| 34 }], | 34 }], |
| 35 [ 'target_arch=="arm" or target_arch=="ia32"', { | 35 [ 'target_arch=="arm" or target_arch=="ia32" or target_arch=="mipsel"', { |
| 36 'targets': [] | 36 'targets': [] |
|
Mark Seaborn
2013/09/23 19:15:28
Ditto
petarj
2013/09/25 23:21:31
Done.
| |
| 37 }], | 37 }], |
| 38 ], | 38 ], |
| 39 } | 39 } |
| 40 | 40 |
| OLD | NEW |