| OLD | NEW |
| 1 # Copyright 2012, Google Inc. | 1 # Copyright 2012, Google Inc. |
| 2 # Copyright 2012 The Native Client Authors. All rights reserved. | 2 # Copyright 2012 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can | 3 # Use of this source code is governed by a BSD-style license that can |
| 4 # be found in the LICENSE file. | 4 # be found in the LICENSE file. |
| 5 | 5 |
| 6 { | 6 { |
| 7 # ---------------------------------------------------------------------- | 7 # ---------------------------------------------------------------------- |
| 8 # Default settings | 8 # Default settings |
| 9 # ---------------------------------------------------------------------- | 9 # ---------------------------------------------------------------------- |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 # ---------------------------------------------------------------------- | 38 # ---------------------------------------------------------------------- |
| 39 # actual targets | 39 # actual targets |
| 40 # ---------------------------------------------------------------------- | 40 # ---------------------------------------------------------------------- |
| 41 'targets': [ | 41 'targets': [ |
| 42 # ---------------------------------------------------------------------- | 42 # ---------------------------------------------------------------------- |
| 43 { | 43 { |
| 44 'target_name': 'mips_validator_core', | 44 'target_name': 'mips_validator_core', |
| 45 'type': 'static_library', | 45 'type': 'static_library', |
| 46 'sources': [ | 46 'sources': [ |
| 47 'address_set.cc', | 47 'address_set.cc', |
| 48 'cpuid_mips.c', | |
| 49 'inst_classes.cc', | 48 'inst_classes.cc', |
| 50 'validator.cc', | 49 'validator.cc', |
| 51 '<(validate_gen_out)/decode.cc' | 50 '<(validate_gen_out)/decode.cc' |
| 52 ], | 51 ], |
| 53 'dependencies': ['decode_gen'], | 52 'dependencies': [ |
| 53 '<(DEPTH)/native_client/src/trusted/cpu_features/cpu_features.gyp:cpu_fe
atures', |
| 54 'decode_gen' |
| 55 ], |
| 54 }, | 56 }, |
| 55 # ---------------------------------------------------------------------- | 57 # ---------------------------------------------------------------------- |
| 56 { | 58 { |
| 57 'target_name': 'decode_gen', | 59 'target_name': 'decode_gen', |
| 58 'type': 'none', | 60 'type': 'none', |
| 59 'direct_dependent_settings': { | 61 'direct_dependent_settings': { |
| 60 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], | 62 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], |
| 61 }, | 63 }, |
| 62 'actions': [ | 64 'actions': [ |
| 63 { | 65 { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 80 'mips-opt.table', | 82 'mips-opt.table', |
| 81 '<@(_outputs)', | 83 '<@(_outputs)', |
| 82 ], | 84 ], |
| 83 'process_outputs_as_sources': 1, | 85 'process_outputs_as_sources': 1, |
| 84 'message': 'generate decoder.cc', | 86 'message': 'generate decoder.cc', |
| 85 }, | 87 }, |
| 86 ], | 88 ], |
| 87 }, | 89 }, |
| 88 ], | 90 ], |
| 89 } | 91 } |
| OLD | NEW |