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

Unified Diff: ppapi/native_client/src/untrusted/pnacl_support_extension/pnacl_support_extension.gyp

Issue 152133007: [MIPS] Support for MIPS PNaCl in PPAPI (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 10 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: ppapi/native_client/src/untrusted/pnacl_support_extension/pnacl_support_extension.gyp
diff --git a/ppapi/native_client/src/untrusted/pnacl_support_extension/pnacl_support_extension.gyp b/ppapi/native_client/src/untrusted/pnacl_support_extension/pnacl_support_extension.gyp
index dfd83496759e751cbee47371d47da44cd8eaac37..f3880120eec268513fc459c078619063ccec01ff 100644
--- a/ppapi/native_client/src/untrusted/pnacl_support_extension/pnacl_support_extension.gyp
+++ b/ppapi/native_client/src/untrusted/pnacl_support_extension/pnacl_support_extension.gyp
@@ -18,6 +18,13 @@
'../../../../../ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp:pnacl_irt_shim',
'../../../../../native_client/tools.gyp:prep_toolchain',
],
+ 'conditions': [
+ ['target_arch=="mipsel"', {
+ 'dependencies!': [
+ '../../../../../ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp:pnacl_irt_shim',
+ ],
+ }],
+ ],
'sources': [
'pnacl_component_crx_gen.py',
],
@@ -89,6 +96,21 @@
],
},
}],
+ ['target_arch=="mipsel"', {
+ 'outputs': [
+ '<(PRODUCT_DIR)/pnacl/pnacl_public_pnacl_json',
+ '<(PRODUCT_DIR)/pnacl/pnacl_public_mips32_crtbegin_o',
+ '<(PRODUCT_DIR)/pnacl/pnacl_public_mips32_ld_nexe',
+ '<(PRODUCT_DIR)/pnacl/pnacl_public_mips32_libcrt_platform_a',
+ '<(PRODUCT_DIR)/pnacl/pnacl_public_mips32_libgcc_a',
+ '<(PRODUCT_DIR)/pnacl/pnacl_public_mips32_libgcc_eh_a',
+ '<(PRODUCT_DIR)/pnacl/pnacl_public_mips32_libpnacl_irt_shim_dummy_a',
+ '<(PRODUCT_DIR)/pnacl/pnacl_public_mips32_llc_nexe',
+ ],
+ 'variables': {
+ 'lib_overrides': [],
+ },
+ }],
['target_arch=="ia32"', {
'outputs': [
'<(PRODUCT_DIR)/pnacl/pnacl_public_pnacl_json',

Powered by Google App Engine
This is Rietveld 408576698