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 'conditions': [ | 11 'conditions': [ |
| 12 ['target_arch=="ia32"', { | 12 ['target_arch=="ia32"', { |
| 13 'targets': [ | 13 'targets': [ |
| 14 { | 14 { |
| 15 'target_name': 'dfa_validate_x86_32', | 15 'target_name': 'dfa_validate_x86_32', |
| 16 'type': 'static_library', | 16 'type': 'static_library', |
| 17 'sources' : [ | 17 'sources' : [ |
| 18 'dfa_validate_32.c', | 18 'dfa_validate_32.c', |
| 19 'dfa_validate_common.c', | 19 'dfa_validate_common.c', |
| 20 'validator_features_validator.c', | 20 'validator_features_validator.c', |
| 21 'gen/validator_x86_32.c', | 21 'gen/validator_x86_32.c', |
| 22 ], | 22 ], |
| 23 }, | 23 }, |
| 24 ], | 24 ], |
| 25 }], | 25 }], |
| 26 [ 'target_arch=="arm" or target_arch=="x64"', { | 26 [ 'target_arch=="arm" or target_arch=="x64" or target_arch=="mipsel"', { |
| 27 'targets': [] | 27 'targets': [] |
|
Mark Seaborn
2013/09/23 19:15:28
Please just remove this 'targets':[] part
petarj
2013/09/25 23:21:31
Done.
| |
| 28 }], | 28 }], |
| 29 ], | 29 ], |
| 30 } | 30 } |
| 31 | 31 |
| OLD | NEW |