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: build/nacl_core_sdk.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: build/nacl_core_sdk.gyp
diff --git a/build/nacl_core_sdk.gyp b/build/nacl_core_sdk.gyp
index 81bca322986f946147eaf6b76324db38ea25f11b..5c5c5ea97afc750d0589a462ac6954de194f6cc3 100644
--- a/build/nacl_core_sdk.gyp
+++ b/build/nacl_core_sdk.gyp
@@ -20,13 +20,13 @@
'../src/untrusted/pthread/pthread.gyp:pthread_lib',
],
'conditions': [
- ['target_arch!="arm"', {
+ ['target_arch!="arm" and target_arch!="mipsel"', {
'dependencies': [
# sel_ldr and irt are host-only and not needed when building the
- # arm components of the SDK.
+ # arm and mips components of the SDK.
'../src/untrusted/irt/irt.gyp:irt_core_nexe',
'../src/trusted/service_runtime/service_runtime.gyp:sel_ldr',
- # these libraries don't currently exist on arm
+ # these libraries don't currently exist on arm and mips
'../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib',
'../src/untrusted/valgrind/valgrind.gyp:valgrind_lib',
],

Powered by Google App Engine
This is Rietveld 408576698