Bug 813911 - Fix nrappkit on Android in gyp build file. r=dmose, ted

This commit is contained in:
Gian-Carlo Pascutto 2012-12-12 12:05:50 -08:00
parent 7e932c86c0
commit 8b95b539ee

View File

@ -194,15 +194,13 @@
'./src/port/win32/include/csi_platform.h',
],
}],
## Linux
[ 'OS == "linux"', {
'cflags': [
'-Wall',
'-Wno-parentheses',
'-Wno-strict-prototypes',
'-Wmissing-prototypes',
[ '(OS == "linux") or (OS == "android")', {
'cflags_mozilla': [
'-Wall',
'-Wno-parentheses',
'-Wno-strict-prototypes',
'-Wmissing-prototypes',
],
'defines' : [
'LINUX',
@ -214,13 +212,13 @@
'NEW_STDIO'
'RETSIGTYPE=void',
'TIME_WITH_SYS_TIME_H=1',
'NO_REG_RPC=1',
'__UNUSED__="__attribute__((unused))"',
],
'include_dirs': [
'src/port/linux/include'
],
'sources': [
'./src/port/linux/include/csi_platform.h',
],