Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: src/trusted/validator_arm/validator_arm.gyp

Issue 7799013: Intial Thumb2 Sandbox (naclrev 6680) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: asdsa Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698