| 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 491e1053435d21daaedd500bca11fabcfd0531f9..d02ed063db0d5fbaef75e8314ea967cccad39022 100644
|
| --- a/src/trusted/service_runtime/service_runtime.gyp
|
| +++ b/src/trusted/service_runtime/service_runtime.gyp
|
| @@ -179,6 +179,20 @@
|
| 'linux/nacl_signal_arm.c',
|
| ],
|
| }],
|
| + ['target_arch=="mipsel"', {
|
| + 'sources': [
|
| + 'arch/mips/nacl_app.c',
|
| + 'arch/mips/nacl_switch.S',
|
| + 'arch/mips/nacl_switch_to_app_mips.c',
|
| + 'arch/mips/nacl_syscall.S',
|
| + 'arch/mips/nacl_tls.c',
|
| + 'arch/mips/sel_addrspace_mips.c',
|
| + 'arch/mips/sel_ldr_mips.c',
|
| + 'arch/mips/sel_rt.c',
|
| + 'arch/mips/tramp_mips.S',
|
| + 'linux/nacl_signal_mips.c',
|
| + ],
|
| + }],
|
| ['OS=="linux"', {
|
| 'sources': [
|
| 'linux/nacl_bootstrap_args.c',
|
| @@ -201,6 +215,11 @@
|
| 'linux/arm/sel_segments.c',
|
| ],
|
| }],
|
| + ['target_arch=="mipsel"', {
|
| + 'sources': [
|
| + 'linux/mips/sel_segments.c',
|
| + ],
|
| + }],
|
| ],
|
| }],
|
| ['OS=="linux" or OS=="mac" or OS=="FreeBSD"', {
|
| @@ -258,6 +277,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',
|
|
|