summaryrefslogtreecommitdiff
path: root/gyp
Commit message (Collapse)AuthorAgeFilesLines
* [ios] Converted iOS SDK into dynamic frameworkMinh Nguyễn2016-01-222-34/+18
| | | | | | | | | | make iproj now produces a target that pulls together static libraries like core and platform-ios into a real dynamic framework. iosapp is pretty much just a regular iOS application that links Mapbox.framework (except for the inclusion of default_styles.hpp). iosapp runs fine in the Simulator and on a device, and the same is true for any application linking against Mapbox.framework. The ipackage target produces both a Bitcode-disabled static framework and a Bitcode-enabled dynamic framework, eliminating the need for a separate framework.sh. It disables code signing, since that happens on copy when the framework is embedded inside the application bundle. It also merges the device and simulator builds into a single fat framework. Also bumped itest minimum deployment target to iOS 8.0, the first version that supports linking frameworks. Fixes #828.
* [build] replace jpeg library with libjpeg-turboKonstantin Käfer2016-01-222-6/+6
|
* Revert "Revert WebP support due to broken builds"Bruno de Oliveira Abinader2016-01-201-0/+4
| | | | | | | This reverts commit 6709bdcacd5a45a10b554f3f225206c9494e5e43. There was an issue with the script that removes '-lwebp' from WebP linker flags, since we're statically linking. This is now fixed.
* Revert WebP support due to broken buildsJohn Firebaugh2016-01-191-4/+0
| | | | This reverts commits 2010fbb0e61cbe7c0b08560118ca887fc1d7193e, a361ce47a19d37b96b48cd605c62c5ab79bba462, and d004bb275ae3ea60bb6c2febd6fa22f1f51c3993.
* [linux] Added WebP tile supportBruno de Oliveira Abinader2016-01-191-0/+1
| | | | | | | - Android support is currently disabled due to a libwebp build issue. - iOS and OS X support will appear after the next Mapbox iOS SDK release. Related: #https://github.com/mapbox/mapbox-gl-native/issues/2354
* [linux] Added WebP build depsBruno de Oliveira Abinader2016-01-191-0/+3
|
* [core] Eliminate platform::assetRoot()John Firebaugh2016-01-134-4/+0
| | | | I regenerated assets.zip so that all file paths have an `assets/` prefix, as the Android AssetFileSource implementation asserts, and removed `TEST_DATA` from the paths.
* [core] Simplify asset:// implementationJohn Firebaugh2016-01-132-2/+2
| | | | | | | | * Move asset:// URL handling to DefaultFileSource. * AssetFileSource implements FileSource interface and follows familiar implementation patterns. * Move default implementation to platform/default, zip implementation to platform/android. * Don't bother with modified / expires / etag -- assets are not cached so it doesn't matter. * Don't bother with interleaving individual IO calls on the implementation thread. That adds a lot of complexity for very little benefit.
* [ios] Refined custom callout view supportMinh Nguyễn2016-01-061-3/+3
| | | | Renamed MGLCalloutView to MGLCompactCalloutView and MGLCalloutViewProtocol to MGLCalloutView to avoid an awkward workaround for a Swift name collision. Replaced individual title and subtitle properties with a single representedObject property that lets you use custom annotation properties in the custom callout view. Overrode a problematic SMCalloutView method. Added lots more documentation.
* [ios] expose custom callout api, wrap around SMCalloutView classRomain Quidet2016-01-061-0/+3
|
* [osx] Unit testsMinh Nguyễn2015-12-241-0/+1
| | | | Added an XCTest bundle to the osxsdk scheme. It contains some basic tests of shared iOS/OS X code.
* [ios] Add SQLite, zlib linker flagsMinh Nguyễn2015-12-221-0/+2
|
* [core] Merge SQLiteCache into the platform libraryJohn Firebaugh2015-12-228-64/+36
| | | | OfflineFileSource will depend on SQLite too.
* [core] Move OnlineFileSource to platformJohn Firebaugh2015-12-224-0/+8
| | | | Preparation for OfflineFileSource which depends on SQLite
* [ios] Move source to src folder, matching osxJohn Firebaugh2015-12-171-17/+17
|
* [android] Simplify structure for native filesJohn Firebaugh2015-12-162-5/+3
|
* Revert "Revert "[ios] Custom style layer""Minh Nguyễn2015-12-161-0/+1
| | | | This reverts commit 081e4e44516937a6139fad5823dd5ec3200cc343.
* [android] Move includes to platform subdirectoryJohn Firebaugh2015-12-162-0/+2
|
* Revert "[ios] Custom style layer"John Firebaugh2015-12-161-1/+0
| | | | ec9a4cd3285da280d43c7ddd0ca96fe37d9c5278
* [ios] Custom style layerMinh Nguyễn2015-12-161-0/+1
| | | | | | Exposed Map::addCustomLayer() publicly as an undocumented, block-based API. This change avoids the terms “layer”, “initialize”, “render”, and “altitude” because they overload existing terminology in the SDK, UIKit, or MapKit. (“Layer” is qualified as “style layer”.) There are outstanding questions about ARC memory management, but this approach works in both Objective-C and Swift for pure OpenGL programming. Added a demo to iosapp that draws a green layer below any labels in Mapbox Streets.
* 2210: MGLAnnotationImage image can be updateRomain Quidet2015-12-151-0/+1
|
* [osx] Map cameraMinh Nguyễn2015-12-132-2/+3
| | | | Shared MGLMapCamera between iOS and OS X. Unfortunately -camera and -setCamera: implementations need to be copy-pasted for now.
* [osx] Fixed standalone launch of osxapp (and run-xosx)Minh Nguyễn2015-12-131-15/+0
| | | | Mapbox.framework needs to be embedded in the application bundle.
* [osx] Documentation comments for public classesMinh Nguyễn2015-12-132-2/+2
| | | | | | | | | | Added documentation comments for all the public headers that aren’t being shared with iOS. Removed an animated: parameter from -selectAnnotation: and -deselectAnnotation:: because callout popovers may extend beyond the entire window, there is no need to scroll the map to make the entire callout visible. Added missing geometric conversion methods. Renamed -mapView:regionWillChangeAnimated: et al. to say “camera” instead of “region”. “Region” leaves ambiguity about whether properties like rotation and pitch trigger this method. “Camera” associates these methods with the camera property, which seems apt.
* [osx] Moved Mapbox.{h,m} into framework proper; set version variablesMinh Nguyễn2015-12-131-1/+0
|
* [osx] Build framework based on static libraryMinh Nguyễn2015-12-132-28/+23
|
* [osx] Rewrote platform-osx and osxappMinh Nguyễn2015-12-134-28/+88
| | | | | | | | | | | | | | platform-osx now vends a real NSView subclass, MGLMapView, that is readily embedded inside a Cocoa application for OS X. MGLMapView is backed by an NSOpenGLLayer for optimal performance and integration with other layer-backed views. It supports keyboard shortcuts and several gestures and hosts attribution, zooming, and rotation controls as subviews. osxapp is now a bona fide Cocoa application that embeds MGLMapView inside a XIB. osxapp has preferences and a share button for tight integration with custom styles. Enabling asynchronous rendering would be more consistent with iOS but increases CPU usage so much, even when idle, that it isn’t worth any performance gain. The bigger issue is that VAOs aren’t being used. make xpackage creates a static library similar to the one created by make ipackage. make clean cleans additional places where build output ends up. The OS X minimum deployment target has been increased from 10.9 to 10.10. osxapp’s window has a full size content view, which requires 10.10. Lightweight generics require iOS 9+ and OS X 10.11 regardless, because it was only in that release that Foundation collection classes started adopting lightweight generics. Shuffled files around and refactored annotations so that iOS and OS X share a good chunk of the annotations code, which now takes advantage of polymorphism. MGLMapView can now display annotations but cannot yet select them. In osxapp, a long press drops a pin, and so does the map view’s context menu. Annotations have NSPopovers as callouts, and their view controllers can be customized. Annotation image alignment rects are respected for hit testing purposes and for positioning the callout anchor. Callouts in osxapp demonstrate the use of bindings to keep callouts in sync with underlying model objects.
* [core] Move linux and osx to platform subdirectoryJohn Firebaugh2015-12-102-3/+3
|
* [core] don't rebuild shaders unless they changeKonstantin Käfer2015-12-101-18/+16
|
* fixes #3180, fixes #3113: bring back -ObjC linker flagJustin R. Miller2015-12-031-0/+1
| | | | Reverts a tiny sliver of 423cfc1
* [core] Don't link with libuv on components not using it directlyThiago Marcos P. Santos2015-12-017-60/+0
|
* [core] Removed libuv dependency from AssetZipContextThiago Marcos P. Santos2015-12-011-1/+0
|
* [core] Introduce Timer abstractionThiago Marcos P. Santos2015-12-014-0/+4
|
* [core] Abstract main loop inside RunLoop classThiago Marcos P. Santos2015-12-014-0/+4
|
* [core] Introduce the AsyncTaskThiago Marcos P. Santos2015-12-014-0/+5
|
* [core] Rewrite image handlingJohn Firebaugh2015-11-252-2/+0
| | | | | | * Consolidate Image and StillImage * Typecheck unassociated vs premultiplied images * Rewrite default platform image decoding implementation
* move from Fabric framework to bare headers per Twitter recommendationJustin R. Miller2015-11-091-1/+4
| | | | Rolls back part of #2742
* refs #2966: remove -ObjC linker flag & bring in categories via other meansJustin R. Miller2015-11-061-1/+2
|
* [core] move mbgl.gyp to gyp directoryMike Morris2015-11-044-12/+39
| | | | | So npm won't clobber binding.gyp, refs https://github.com/npm/npm/issues/10243
* [node] enable npm to build mapbox-gl-native package from sourceLucas Wojciechowski2015-11-041-1/+1
| | | | | | This reverts commit 311bf93abe9f815668e8e0a779c87c3eb5c1199d. more explicit require paths in tests
* [core] mason geojsonvt-2.1.6.3Mike Morris2015-11-022-2/+11
| | | | | | | | | | | | | - [osx] set -fvisibility-inlines-hidden in gyp/common.gypi to silence mismatched visibility linker warnings - [linux] set cxx_host in GYP_FLAGS to set -fabi-version=0 on gcc builds to use clang-built mason binaries - [ios] update symbol visibility for iOS tests - [ios] link libgeojsonvt.a in iOS tests xcodeproj - add libgeojsonvt.a to General -> Linked Frameworks and Libraries - add mason_packages (recursive) to Build Settings -> Library Search Path - [ios] add libuv and geojsonvt first in iOS libtool smush to ensure symbols are found by later compilation units where they are undefined
* [core][iOS] Source iOS styles from default_stylesMinh Nguyễn2015-10-301-0/+2
| | | | | | | | | | Moved mbgl::util::default_styles to a more appropriate location, where iOS platform code can also find it. Moved -[MGLMapView bundledStyleURLs] (which is now deprecated) and the style switcher in iosapp to default_styles. Added a collection of convenience methods for getting style URLs. It makes little sense to layer an enum atop this, as MapKit does, because MGLMapView styles aren’t limited to this set. A good analogy is UIColor. This also makes for a good entry point for future runtime styling APIs. Introduced independent constants for each default style, because it’s more common to need access to a particular style than to iterate over them. This fact is apparent in the MGLStyle class, which now uses macros and assertions to ensure that it’s kept up-to-date with changes in default_styles. /ref #1462
* [core] Remove bundled styles.Leith Bade2015-10-301-35/+0
| | | | Fixes #2239
* [android] Move android filesLeith Bade2015-10-251-1/+1
| | | | Fixes #2032
* refs #2684: integrate Twitter FabricJustin R. Miller2015-10-231-0/+1
|
* [ios] remove CoreTelephony dependencyJason Wray2015-10-191-1/+0
| | | | | | Cellular carrier name and connectivity level will now only be sent if the developer independently chooses to link the CoreTelephony framework in their app.
* [core] c++1y -> c++14Mike Morris2015-10-141-2/+1
|
* Install RapidJSON from masonJohn Firebaugh2015-10-011-0/+2
|
* mason variant@1.0Mike Morris2015-09-303-0/+4
|
* fixes #2350: remove iOS-specific SQLite cache wrapperJustin R. Miller2015-09-231-2/+0
|