summaryrefslogtreecommitdiff
path: root/gyp/http-android.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'gyp/http-android.gypi')
-rw-r--r--gyp/http-android.gypi53
1 files changed, 0 insertions, 53 deletions
diff --git a/gyp/http-android.gypi b/gyp/http-android.gypi
deleted file mode 100644
index 749e3f2f4d..0000000000
--- a/gyp/http-android.gypi
+++ /dev/null
@@ -1,53 +0,0 @@
-{
- 'targets': [
- { 'target_name': 'http-android',
- 'product_name': 'mbgl-http-android',
- 'type': 'static_library',
- 'standalone_static_library': 1,
- 'hard_dependency': 1,
-
- 'sources': [
- '../platform/android/src/http_request_android.cpp',
- ],
-
- 'include_dirs': [
- '../include',
- '../src',
- ],
-
- 'variables': {
- 'cflags_cc': [
- '<@(boost_cflags)',
- '<@(jni.hpp_cflags)',
- ],
- 'defines': [
- '-DMBGL_HTTP_ANDROID'
- ],
- },
-
- 'conditions': [
- ['OS == "mac"', {
- 'xcode_settings': {
- 'OTHER_CPLUSPLUSFLAGS': [ '<@(cflags_cc)' ],
- },
- }, {
- 'cflags_cc': [ '<@(cflags_cc)' ],
- }],
- ],
-
- 'direct_dependent_settings': {
- 'conditions': [
- ['OS == "mac"', {
- 'xcode_settings': {
- 'OTHER_CFLAGS': [ '<@(defines)' ],
- 'OTHER_CPLUSPLUSFLAGS': [ '<@(defines)' ],
- }
- }, {
- 'cflags': [ '<@(defines)' ],
- 'cflags_cc': [ '<@(defines)' ],
- }]
- ],
- },
- },
- ],
-}