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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator_mips/validator_mips.gyp
diff --git a/src/trusted/validator_mips/validator_mips.gyp b/src/trusted/validator_mips/validator_mips.gyp
index 02635f0bfb19351f405538f029afcebcd7bb5883..9774e8d419ef3c0475bb9b48339997fb4ff359fe 100755
--- a/src/trusted/validator_mips/validator_mips.gyp
+++ b/src/trusted/validator_mips/validator_mips.gyp
@@ -45,7 +45,6 @@
'type': 'static_library',
'sources': [
'address_set.cc',
- 'inst_classes.cc',
'validator.cc',
'<(validate_gen_out)/decode.cc'
],
@@ -67,18 +66,18 @@
'msvs_cygwin_shell': 0,
'inputs': [
'mips-opt.table',
- 'generate_decoder.py',
- 'dgen_core.py',
- 'dgen_input.py',
- 'dgen_opt.py',
- 'dgen_output.py',
+ 'dgen/generate_decoder.py',
+ 'dgen/dgen_core.py',
+ 'dgen/dgen_input.py',
+ 'dgen/dgen_opt.py',
+ 'dgen/dgen_output.py',
],
'outputs': [
'<(validate_gen_out)/decode.cc',
],
'action': [
'<@(python_exe)',
- 'generate_decoder.py',
+ 'dgen/generate_decoder.py',
'mips-opt.table',
'<@(_outputs)',
],
@@ -87,5 +86,14 @@
},
],
},
+ # ----------------------------------------------------------------------
+ {
+ 'target_name': 'ncvalidate_mips',
+ 'type': 'static_library',
+ 'sources': ['ncvalidate.cc'],
+ 'dependencies': [
+ 'mips_validator_core'
+ ],
+ },
],
}
« 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