summaryrefslogtreecommitdiff
path: root/gyp/asset-fs.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'gyp/asset-fs.gypi')
-rw-r--r--gyp/asset-fs.gypi52
1 files changed, 0 insertions, 52 deletions
diff --git a/gyp/asset-fs.gypi b/gyp/asset-fs.gypi
deleted file mode 100644
index 30dc9e07aa..0000000000
--- a/gyp/asset-fs.gypi
+++ /dev/null
@@ -1,52 +0,0 @@
-{
- 'targets': [
- { 'target_name': 'asset-fs',
- 'product_name': 'mbgl-asset-fs',
- 'type': 'static_library',
- 'standalone_static_library': 1,
- 'hard_dependency': 1,
-
- 'sources': [
- '../platform/default/asset_file_source.cpp',
- ],
-
- 'include_dirs': [
- '../include',
- '../src',
- ],
-
- 'variables': {
- 'cflags_cc': [
- '<@(boost_cflags)',
- ],
- 'defines': [
- '-DMBGL_ASSET_FS'
- ],
- },
-
- '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)' ],
- }]
- ],
- },
- },
- ],
-}