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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 'type': 'none', | 66 'type': 'none', |
67 'direct_dependent_settings': { | 67 'direct_dependent_settings': { |
68 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], | 68 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], |
69 }, | 69 }, |
70 'actions': [ | 70 'actions': [ |
71 { | 71 { |
72 'action_name': 'decode_gen_action', | 72 'action_name': 'decode_gen_action', |
73 'msvs_cygwin_shell': 0, | 73 'msvs_cygwin_shell': 0, |
74 'inputs': [ | 74 'inputs': [ |
75 'armv7-opt.table', | 75 'armv7-opt.table', |
| 76 'armv7-thumb.table', |
76 'generate_decoder.py', | 77 'generate_decoder.py', |
77 'dgen_core.py', | 78 'dgen_core.py', |
78 'dgen_input.py', | 79 'dgen_input.py', |
79 'dgen_opt.py', | 80 'dgen_opt.py', |
80 'dgen_output.py', | 81 'dgen_output.py', |
81 ], | 82 ], |
82 'outputs': [ | 83 'outputs': [ |
83 '<(validate_gen_out)/decode.cc', | 84 '<(validate_gen_out)/decode.cc', |
84 ], | 85 ], |
85 'action': [ | 86 'action': [ |
86 '<@(python_exe)', | 87 '<@(python_exe)', |
87 'generate_decoder.py', | 88 'generate_decoder.py', |
88 'armv7-opt.table', | 89 'armv7-opt.table', |
| 90 'armv7-thumb.table', |
89 '<@(_outputs)', | 91 '<@(_outputs)', |
90 ], | 92 ], |
91 'process_outputs_as_sources': 1, | 93 'process_outputs_as_sources': 1, |
92 'message': 'generate decoder.cc', | 94 'message': 'generate decoder.cc', |
93 }, | 95 }, |
94 ], | 96 ], |
95 }, | 97 }, |
96 ], | 98 ], |
97 } | 99 } |
OLD | NEW |