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

Unified Diff: src/trusted/service_runtime/service_runtime.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: Created 7 years, 3 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
Index: src/trusted/service_runtime/service_runtime.gyp
diff --git a/src/trusted/service_runtime/service_runtime.gyp b/src/trusted/service_runtime/service_runtime.gyp
index 841fba051f7060ed285a0c7c1388bcf50075a275..c3e57c6fe6548824a18e2613fe8d616b2b2ca007 100644
--- a/src/trusted/service_runtime/service_runtime.gyp
+++ b/src/trusted/service_runtime/service_runtime.gyp
@@ -178,6 +178,20 @@
'linux/nacl_signal_arm.c',
],
}],
+ ['target_arch=="mipsel"', {
+ 'sources': [
+ 'arch/mips/nacl_app.c',
Mark Seaborn 2013/09/20 23:11:17 Please sort this list
petarj 2013/09/23 17:49:24 Done.
+ 'arch/mips/nacl_switch_to_app_mips.c',
+ 'arch/mips/sel_rt.c',
+ 'arch/mips/nacl_tls.c',
+ 'arch/mips/sel_ldr_mips.c',
+ 'arch/mips/sel_addrspace_mips.c',
+ 'arch/mips/nacl_switch.S',
+ 'arch/mips/nacl_syscall.S',
+ 'arch/mips/tramp_mips.S',
+ 'linux/nacl_signal_mips.c',
+ ],
+ }],
['OS=="linux"', {
'sources': [
'linux/nacl_bootstrap_args.c',
@@ -200,6 +214,11 @@
'linux/arm/sel_segments.c',
],
}],
+ ['target_arch=="mipsel"', {
+ 'sources': [
+ 'linux/mips/sel_segments.c',
+ ],
+ }],
],
}],
['OS=="linux" or OS=="mac" or OS=="FreeBSD"', {
@@ -257,6 +276,11 @@
'<(DEPTH)/native_client/src/trusted/validator_arm/validator_arm.gyp:ncvalidate_arm_v2',
],
}],
+ ['target_arch=="mipsel"', {
+ 'dependencies': [
+ '<(DEPTH)/native_client/src/trusted/validator_mips/validator_mips.gyp:ncvalidate_mips',
+ ],
+ }],
['target_arch=="ia32" or target_arch=="x64"', {
'dependencies': [
'arch/x86/service_runtime_x86.gyp:service_runtime_x86_common',

Powered by Google App Engine
This is Rietveld 408576698