diff options
Diffstat (limited to 'gyp/mbgl.gyp')
-rw-r--r-- | gyp/mbgl.gyp | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/gyp/mbgl.gyp b/gyp/mbgl.gyp deleted file mode 100644 index ccf176eb67..0000000000 --- a/gyp/mbgl.gyp +++ /dev/null @@ -1,83 +0,0 @@ -{ - 'includes': [ - 'common.gypi', - 'shaders.gypi', - 'version.gypi', - 'certificates.gypi', - 'core.gypi', - 'none.gypi', - ], - - 'targets': [ - { 'target_name': 'loop', - 'product_name': 'mbgl-loop', - 'type': 'static_library', - 'standalone_static_library': 1, - - 'include_dirs': [ - '../include', - '../src', - ], - - 'conditions': [ - ['loop_lib == "darwin"', { - 'sources': [ - '../platform/darwin/src/async_task.cpp', - '../platform/darwin/src/run_loop.cpp', - '../platform/darwin/src/timer.cpp', - ], - }], - - ['loop_lib == "android"', { - 'sources': [ - '../platform/android/src/async_task.cpp', - '../platform/android/src/run_loop.cpp', - '../platform/android/src/timer.cpp', - ], - }], - - ['loop_lib == "uv"', { - 'sources': [ - '../platform/default/async_task.cpp', - '../platform/default/run_loop.cpp', - '../platform/default/timer.cpp', - ], - - 'cflags_cc': [ - '<@(libuv_cflags)', - ], - - 'link_settings': { - 'libraries': [ - '<@(libuv_static_libs)', - '<@(libuv_ldflags)', - ], - }, - - 'conditions': [ - ['OS == "mac"', { - 'xcode_settings': { - 'OTHER_CPLUSPLUSFLAGS': [ '<@(libuv_cflags)' ], - } - }] - ], - }] - ], - }, - ], - - 'conditions': [ - ['headless_lib == "cgl" and host == "osx"', { 'includes': [ 'headless-cgl.gypi' ] } ], - ['headless_lib == "eagl" and host == "ios"', { 'includes': [ 'headless-eagl.gypi' ] } ], - ['headless_lib == "glx" and host == "linux"', { 'includes': [ 'headless-glx.gypi' ] } ], - ['platform_lib == "osx" and host == "osx"', { 'includes': [ 'platform-osx.gypi' ] } ], - ['platform_lib == "ios" and host == "ios"', { 'includes': [ 'platform-ios.gypi' ] } ], - ['platform_lib == "linux"', { 'includes': [ 'platform-linux.gypi' ] } ], - ['platform_lib == "android" and host == "android"', { 'includes': [ 'platform-android.gypi' ] } ], - ['http_lib == "curl"', { 'includes': [ 'http-curl.gypi' ] } ], - ['http_lib == "nsurl" and (host == "osx" or host == "ios")', { 'includes': [ 'http-nsurl.gypi' ] } ], - ['http_lib == "android" and host == "android"', { 'includes': [ 'http-android.gypi' ] } ], - ['asset_lib == "fs"', { 'includes': [ 'asset-fs.gypi' ] } ], - ['asset_lib == "zip"', { 'includes': [ 'asset-zip.gypi' ] } ], - ], -} |