summaryrefslogtreecommitdiff
path: root/gyp/asset-zip.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'gyp/asset-zip.gypi')
-rw-r--r--gyp/asset-zip.gypi74
1 files changed, 0 insertions, 74 deletions
diff --git a/gyp/asset-zip.gypi b/gyp/asset-zip.gypi
deleted file mode 100644
index 9011981f6c..0000000000
--- a/gyp/asset-zip.gypi
+++ /dev/null
@@ -1,74 +0,0 @@
-{
- 'targets': [
- { 'target_name': 'asset-zip',
- 'product_name': 'mbgl-asset-zip',
- 'type': 'static_library',
- 'standalone_static_library': 1,
- 'hard_dependency': 1,
-
- 'sources': [
- '../platform/android/src/asset_file_source.cpp',
- ],
-
- 'include_dirs': [
- '../include',
- '../src',
- ],
-
- 'variables': {
- 'cflags': [
- '<@(libzip_cflags)',
- ],
- 'cflags_cc': [
- '<@(libzip_cflags)',
- ],
- 'ldflags': [
- '<@(libzip_ldflags)',
- ],
- 'libraries': [
- '<@(libzip_static_libs)',
- ],
- 'defines': [
- '-DMBGL_ASSET_ZIP'
- ],
- },
-
- 'conditions': [
- ['OS == "mac"', {
- 'xcode_settings': {
- 'OTHER_CFLAGS': [ '<@(cflags)' ],
- 'OTHER_CPLUSPLUSFLAGS': [ '<@(cflags_cc)' ],
- },
- }, {
- 'cflags': [ '<@(cflags)' ],
- 'cflags_cc': [ '<@(cflags_cc)' ],
- }],
- ],
-
- 'direct_dependent_settings': {
- 'conditions': [
- ['OS == "mac"', {
- 'xcode_settings': {
- 'OTHER_CFLAGS': [ '<@(defines)' ],
- 'OTHER_CPLUSPLUSFLAGS': [ '<@(defines)' ],
- }
- }, {
- 'cflags': [ '<@(defines)' ],
- 'cflags_cc': [ '<@(defines)' ],
- }]
- ],
- },
-
- 'link_settings': {
- 'conditions': [
- ['OS == "mac"', {
- 'libraries': [ '<@(libraries)' ],
- 'xcode_settings': { 'OTHER_LDFLAGS': [ '<@(ldflags)' ] }
- }, {
- 'libraries': [ '<@(libraries)', '<@(ldflags)' ],
- }]
- ],
- },
- },
- ],
-}