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

Unified Diff: build/all.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
« no previous file with comments | « no previous file | build/build_nexe.py » ('j') | build/build_nexe.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/all.gyp
diff --git a/build/all.gyp b/build/all.gyp
index 567bef5a1e68806c3d48a7da18994b6069a2b6cb..448e1424bc984b9c0221de4e44689f91291a3eab 100644
--- a/build/all.gyp
+++ b/build/all.gyp
@@ -37,7 +37,8 @@
'dependencies': [
'../src/trusted/validator_arm/validator_arm.gyp:*',
],
- }, {
+ }],
+ ['target_arch=="ia32" or target_arch=="x64"', {
'dependencies': [
'../src/trusted/validator/driver/ncval.gyp:*',
'../src/trusted/validator_arm/ncval.gyp:*',
@@ -45,6 +46,11 @@
'../src/trusted/validator_x86/validator_x86.gyp:*',
],
}],
+ ['target_arch=="mipsel"', {
+ 'dependencies': [
+ '../src/trusted/validator_mips/validator_mips.gyp:*',
+ ],
+ }],
],
},
],
« no previous file with comments | « no previous file | build/build_nexe.py » ('j') | build/build_nexe.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698