summaryrefslogtreecommitdiff
path: root/.gitmodules
Commit message (Collapse)AuthorAgeFilesLines
* [build] Remove glfw submoduleThiago Marcos P. Santos2020-04-171-3/+0
| | | | We use it from the system.
* [build] Drop unused modules from .gitmodulesRinigus2020-04-151-12/+0
|
* [build] Use cheap-ruler-cpp provided via mapbox-baseBruno de Oliveira Abinader2020-03-271-3/+0
|
* [build] Add mapbox-gl-native-curl submoduleJuha Alanen2020-03-271-0/+3
|
* [build] Remove submodule curl-android-iosJuha Alanen2020-03-271-3/+0
|
* [ios, macos] Deleted iOS/macOS map SDK sources, resources, scriptsMinh Nguyễn2020-02-271-6/+0
|
* [build] Bump mapbox-baseThiago Marcos P. Santos2020-02-241-6/+0
| | | | | This will move geojson-vt-cpp and shelf-pack-cpp to mapbox-base collection of libraries.
* [build] Add curl-android-ios submoduleJuha Alanen2020-02-061-0/+3
| | | | | | Static libcurl to be used in Android and iOS apps. Used for testing.
* [build] Add cpp-httplib as submoduleJuha Alanen2020-01-301-0/+3
| | | | | | A C++ header-only HTTP/HTTPS server and client library. Used for testing.
* [test-runner] Enable rebaseline for next-ios-render-test-runner (#16147)zmiao2020-01-281-0/+3
|
* [build] Remove uneeded submodulesThiago Marcos P. Santos2020-01-081-6/+0
| | | | Not needed after the render tests are using the offline cache.
* [build] Use rapidjson from mapbox-baseMikhail Pozdnyakov2019-09-021-3/+0
|
* [build] Use pixelmatch-cpp from mapbox-baseMikhail Pozdnyakov2019-09-021-3/+0
|
* [build] Use filesystem from mapbox-baseMikhail Pozdnyakov2019-09-021-3/+0
|
* [build] Use args from mapbox-baseMikhail Pozdnyakov2019-09-021-3/+0
|
* [build] Use jni.hpp from mapbox-baseMikhail Pozdnyakov2019-09-021-3/+0
|
* [build] Use geojson.hpp from mapbox-baseMikhail Pozdnyakov2019-09-021-3/+0
|
* [build] Use kdbush.hpp from mapbox-baseMikhail Pozdnyakov2019-09-021-3/+0
|
* [build] Use supercluster.hpp from mapbox-baseMikhail Pozdnyakov2019-09-021-3/+0
|
* [core] Add googletest git submoduleMikhail Pozdnyakov2019-08-011-0/+3
|
* [build] Use mapbox-base optionalBruno de Oliveira Abinader2019-07-291-3/+0
|
* [build] Replace geometry.hpp/variant with mapbox-baseBruno de Oliveira Abinader2019-07-261-6/+3
|
* [core] Added vendor/filesystemBruno de Oliveira Abinader2019-06-251-0/+3
|
* [build] Added vendor/mapbox-gl-stylesBruno de Oliveira Abinader2019-06-251-0/+3
|
* [build] Added vendor/mvt-fixturesBruno de Oliveira Abinader2019-06-251-0/+3
|
* [core] Bump args to 6.2.2 (does not use RTTI)Bruno de Oliveira Abinader2019-03-251-0/+3
|
* [darwin, docs] Use shared mapbox/jazzy-theme submoduleJason Wray2019-02-011-0/+3
|
* [android] mapbox-events-android vendorŁukasz Paczos2019-01-151-0/+3
|
* [android] mapbox-java vendorŁukasz Paczos2019-01-151-0/+3
|
* [android] mapbox-gestures-android vendorŁukasz Paczos2019-01-151-0/+3
|
* [core] use constexpr map using eternal for expression lookupsKonstantin Käfer2018-12-041-0/+3
|
* [build] use GLFW as a submodule and update to most recent versionKonstantin Käfer2018-11-211-0/+3
| | | | this fixes https://github.com/glfw/glfw/issues/1334 for macOS Mojave
* [build] Add more vendor packagesThiago Marcos P. Santos2018-11-161-0/+9
| | | | | | * jni.hpp * cheap-ruler-cpp * pixelmatch-cpp
* [core] Vendor libbenchmarkAlexander Shalamov2018-11-081-0/+3
| | | | | | | | Prebuilt binaries for libbenchmark might be incompatible with some environments, for example, when mbgl-benchmark target is compiled on host with GCC and linked against mason's clang 5.0 compiled binaries. Vendored libbenchmark avoids aforementioned issue, as the target and the binary compiled with same compiler / options.
* [build] Add vendored libboostThiago Marcos P. Santos2018-11-011-0/+3
| | | | Custom extract made using bcp based on 1.65.1
* [build] Add dependencies as submodulesThiago Marcos P. Santos2018-10-311-0/+54
| | | | | Do not use mason and build offline. These are header only deps.
* [ios, build] Remove obsolete UI tests, KIF and OHHTTPStubs submodulesupstream/fb-remove-dead-uitest-infraJason Wray2018-05-241-7/+0
|
* Replace embedded telem implementation with mapbox-mobile-events library (#10698)Jesse Bounds2018-02-201-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [ios] Introduce mobile events dependency This adds the mobile events dependency including the events library's namespaced header file so that the related compiled symbols are prefixed to make them specific to the maps SDK. A pre-compiled header file is added so that the namespaced header file is added in all places where it is needed (most importantly every events library file). * [ios] Use new events library for telemetry events This makes the following significant changes: Refactors the MGLMapboxEvents singleton to delegate internally to an instance of MMEEventsManager that it keeps for itself. The MGLMapboxEvents public API is refactored to reflect this. Note: MGLMapboxEvents continues to handle checking for opt out Uses that new events API in MGLMapboxEvents to send all telem events (and turnstile) All embedded certs are removed since the new telem library uses public key info pinning Legacy telemetry utility classes for location and networking are removed since those are implemented in the telem library * [ios] Update submodules initialized by cmake We no longer bring in SMCalloutView as a submodule so it is removed. We now vendor the telemetry events library as a submodule so it is added. * Update mapbox-mobile-events * Update mobile events lib * Set events options with MGL user defaults values For options that historically could be set with user defaults in the Maps SDK, collect them and set the appropriate property values in the new events library. Also, check the existence of two new optional configuration values MGLTelemetryAccessToken and MGLTelemetryBaseURL so that the events endpoint and access token can be configured and the access token can easily be set dynamically and apart from the access token for the maps API. MGLTelemetryBaseURL replaces the legacy MGLTelemetryTestServerURL. This is ok because this value was never intended to be used by client applications. The new name better reflects the fact that the URL can be changed to any backend stack, not just a test server. Because it is possible for the configuration values to be read from user defaults before the events manager is fully set up, this also adds a local cache for the baseURL and accessToken values so that they can be stored and applied once it is time to setup the the events manager. * Update mapbox-mobile-events mapbox-mobile-events was forced pushed to include https://github.com/mapbox/mapbox-events-ios/pull/28 * Rename MGLMapboxEvents singleton access method Manager is not in the name of the class. Just call it an instance. * Update mapbox-mobile-events * Add comments about config value loading * Guard against creating events for IB * Refactor user defaults update handler This updates the handling logic for user defaults to break apart config changes that require a check for pausing or resuming the events lib’s telemetry collection from config changes that can happen with no update to the pause/resume state. It also ports the optimization from https://github.com/mapbox/mapbox-gl-native/pull/10803 so that the call to pause and resume is not performed unless the user defaults store has new values that have not yet been applied to the events library. * Update mapbox-mobile-events * Rename events submodule folder * Fix incorrect events library refs * Update mapbox-mobile-events * Update user user agent id value This value aligns with our schme of {source-sdk-platform} and will be used by the events library in the user agent and vendorid. * Update mapbox-mobile-events Pin to v3.0.0 (d522b18) * Improve code comments * [ios] Fixed a broken file reference to MGLTelemetryConfig.
* [ios] Rename SMCalloutView and stop using submoduleupstream/fb-mglsmcalloutviewJason Wray2017-10-111-3/+0
|
* [build] Remove Mason submodule in favor of CMake masonKonstantin Käfer2017-02-081-5/+0
|
* [build] Use https for mapbox-gl-js submoduleJohn Firebaugh2017-01-251-1/+1
| | | | This allows pushing directly from the submodule, if you have https authentication set up.
* [build] Use a submodule for mapbox-gl-js rather than an npm dependencyJohn Firebaugh2016-12-221-0/+3
|
* [ios] Move OHHTTPStubs to Git submodule and update to 5.2.0Jason Wray2016-08-251-0/+3
|
* [ios, osx] Shared test bundleMinh Nguyễn2016-04-161-4/+3
| | | | | | The iOS and OS X SDKs now share a non-UI test bundle. Moved the iOS UI test bundle into a uitest/ subdirectory and moved the OS X SDK tests into the darwin/ subdirectory. Upgraded KIF to v3.4.2.
* [ios, osx] Consolidate remaining files in platform/{ios,osx}John Firebaugh2016-02-121-1/+1
|
* [core] mason geojsonvt-2.1.6.3Mike Morris2015-11-021-3/+0
| | | | | | | | | | | | | - [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] Remove bundled styles.Leith Bade2015-10-301-4/+0
| | | | Fixes #2239
* Consolidate test-suite rendering harnesses (#2236)John Firebaugh2015-09-041-4/+0
|
* squash of #1655: shape annotations support for core & iOSJustin R. Miller2015-06-151-0/+4
|
* fixes #830, #880: bring back iOS functional testsJustin R. Miller2015-04-231-1/+1
|