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

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

Issue 24227003: [MIPS] Add support to gyp files to build Native Client inside of Chromium (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Upload again. Created 7 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
OLDNEW
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
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 'inst_classes.cc',
49 'validator.cc', 48 'validator.cc',
50 '<(validate_gen_out)/decode.cc' 49 '<(validate_gen_out)/decode.cc'
51 ], 50 ],
52 'dependencies': [ 51 'dependencies': [
53 '<(DEPTH)/native_client/src/trusted/cpu_features/cpu_features.gyp:cpu_fe atures', 52 '<(DEPTH)/native_client/src/trusted/cpu_features/cpu_features.gyp:cpu_fe atures',
54 'decode_gen' 53 'decode_gen'
55 ], 54 ],
56 }, 55 },
57 # ---------------------------------------------------------------------- 56 # ----------------------------------------------------------------------
58 { 57 {
59 'target_name': 'decode_gen', 58 'target_name': 'decode_gen',
60 'type': 'none', 59 'type': 'none',
61 'direct_dependent_settings': { 60 'direct_dependent_settings': {
62 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], 61 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'],
63 }, 62 },
64 'actions': [ 63 'actions': [
65 { 64 {
66 'action_name': 'decode_gen_action', 65 'action_name': 'decode_gen_action',
67 'msvs_cygwin_shell': 0, 66 'msvs_cygwin_shell': 0,
68 'inputs': [ 67 'inputs': [
69 'mips-opt.table', 68 'mips-opt.table',
70 'generate_decoder.py', 69 'dgen/generate_decoder.py',
71 'dgen_core.py', 70 'dgen/dgen_core.py',
72 'dgen_input.py', 71 'dgen/dgen_input.py',
73 'dgen_opt.py', 72 'dgen/dgen_opt.py',
74 'dgen_output.py', 73 'dgen/dgen_output.py',
75 ], 74 ],
76 'outputs': [ 75 'outputs': [
77 '<(validate_gen_out)/decode.cc', 76 '<(validate_gen_out)/decode.cc',
78 ], 77 ],
79 'action': [ 78 'action': [
80 '<@(python_exe)', 79 '<@(python_exe)',
81 'generate_decoder.py', 80 'dgen/generate_decoder.py',
82 'mips-opt.table', 81 'mips-opt.table',
83 '<@(_outputs)', 82 '<@(_outputs)',
84 ], 83 ],
85 'process_outputs_as_sources': 1, 84 'process_outputs_as_sources': 1,
86 'message': 'generate decoder.cc', 85 'message': 'generate decoder.cc',
87 }, 86 },
88 ], 87 ],
89 }, 88 },
89 # ----------------------------------------------------------------------
90 {
91 'target_name': 'ncvalidate_mips',
92 'type': 'static_library',
93 'sources': ['ncvalidate.cc'],
94 'dependencies': [
95 'mips_validator_core'
96 ],
97 },
90 ], 98 ],
91 } 99 }
OLDNEW
« no previous file with comments | « src/trusted/validator_arm/ncval.gyp ('k') | src/trusted/validator_ragel/dfa_validator_x86_32.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698