| OLD | NEW |
| 1 # Copyright 2010, Google Inc. | 1 # Copyright 2010, Google Inc. |
| 2 # Copyright 2009 The Native Client Authors. All rights reserved. | 2 # Copyright 2009 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 25 matching lines...) Expand all Loading... |
| 36 # ---------------------------------------------------------------------- | 36 # ---------------------------------------------------------------------- |
| 37 'targets': [ | 37 'targets': [ |
| 38 # ---------------------------------------------------------------------- | 38 # ---------------------------------------------------------------------- |
| 39 { | 39 { |
| 40 'target_name': 'arm_validator_core', | 40 'target_name': 'arm_validator_core', |
| 41 'type': 'static_library', | 41 'type': 'static_library', |
| 42 'sources': [ | 42 'sources': [ |
| 43 'address_set.cc', | 43 'address_set.cc', |
| 44 'actual_classes.cc', | 44 'actual_classes.cc', |
| 45 'baseline_classes.cc', | 45 'baseline_classes.cc', |
| 46 'cpuid_arm.c', | |
| 47 'inst_classes.cc', | 46 'inst_classes.cc', |
| 48 'model.cc', | 47 'model.cc', |
| 49 'validator.cc', | 48 'validator.cc', |
| 50 'gen/arm32_decode.cc', | 49 'gen/arm32_decode.cc', |
| 51 'gen/arm32_decode_actuals.cc' | 50 'gen/arm32_decode_actuals.cc' |
| 52 ], | 51 ], |
| 52 'dependencies': [ |
| 53 '<(DEPTH)/native_client/src/trusted/cpu_features/cpu_features.gyp:cpu_fe
atures' |
| 54 ], |
| 53 }, | 55 }, |
| 54 # ---------------------------------------------------------------------- | 56 # ---------------------------------------------------------------------- |
| 55 { | 57 { |
| 56 'target_name': 'ncvalidate_arm_v2', | 58 'target_name': 'ncvalidate_arm_v2', |
| 57 'type': 'static_library', | 59 'type': 'static_library', |
| 58 'sources': [ 'ncvalidate.cc' ], | 60 'sources': [ 'ncvalidate.cc' ], |
| 59 'dependencies': [ | 61 'dependencies': [ |
| 60 'arm_validator_core' | 62 'arm_validator_core' |
| 61 ], | 63 ], |
| 62 }, | 64 }, |
| 63 # ---------------------------------------------------------------------- | 65 # ---------------------------------------------------------------------- |
| 64 { | 66 { |
| 65 'target_name': 'arm_validator_reporters', | 67 'target_name': 'arm_validator_reporters', |
| 66 'type': 'static_library', | 68 'type': 'static_library', |
| 67 'sources': [ 'problem_reporter.cc' ], | 69 'sources': [ 'problem_reporter.cc' ], |
| 68 }, | 70 }, |
| 69 ], | 71 ], |
| 70 } | 72 } |
| OLD | NEW |