From 272fa8935ed1e97a7c8a5e6cbd44bb47ac7dc00b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Fri, 23 Jan 2015 16:31:48 +0100 Subject: make storage lib separate so we can build without storage libs --- mbgl.gyp | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 mbgl.gyp (limited to 'mbgl.gyp') diff --git a/mbgl.gyp b/mbgl.gyp new file mode 100644 index 0000000000..2f65caa442 --- /dev/null +++ b/mbgl.gyp @@ -0,0 +1,38 @@ +{ + 'includes': [ + './gyp/common.gypi', + './gyp/shaders.gypi', + './gyp/version.gypi', + './gyp/styles.gypi', + './gyp/certificates.gypi', + './gyp/mbgl-core.gypi', + './gyp/mbgl-headless.gypi', + './gyp/mbgl-storage-curl.gypi', + './gyp/install.gypi', + ], + + 'conditions': [ + ['platform == "osx"', { + 'includes': [ + './gyp/mbgl-osx.gypi', + './gyp/mbgl-storage-cocoa.gypi' + ], + }], + ['platform == "ios"', { + 'includes': [ + './gyp/mbgl-ios.gypi', + './gyp/mbgl-storage-cocoa.gypi' + ], + }], + ['platform == "linux"', { + 'includes': [ + './gyp/mbgl-linux.gypi' + ], + }], + ['platform == "android"', { + 'includes': [ + './gyp/mbgl-android.gypi' + ], + }], + ], +} -- cgit v1.2.1