├── .clang-format ├── .gitignore ├── Makefile ├── README.md ├── android ├── .gitignore ├── Cookpit │ ├── .gitignore │ ├── .idea │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── gradle.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── github │ │ │ │ └── kittinunf │ │ │ │ └── cookpit │ │ │ │ └── ApplicationTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── github │ │ │ │ └── kittinunf │ │ │ │ └── cookpit │ │ │ │ ├── Application.kt │ │ │ │ ├── BaseActivity.kt │ │ │ │ ├── BaseFragment.kt │ │ │ │ ├── explore │ │ │ │ ├── ExploreDataController.kt │ │ │ │ ├── ExploreFragment.kt │ │ │ │ └── ExploreViewModel.kt │ │ │ │ ├── main │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainViewModel.kt │ │ │ │ ├── map │ │ │ │ ├── MapDataController.kt │ │ │ │ ├── MapFragment.kt │ │ │ │ └── MapViewModel.kt │ │ │ │ ├── photo │ │ │ │ ├── PhotoDataController.kt │ │ │ │ ├── PhotoViewActivity.kt │ │ │ │ └── PhotoViewModel.kt │ │ │ │ ├── search │ │ │ │ ├── SearchDataController.kt │ │ │ │ ├── SearchFragment.kt │ │ │ │ └── SearchViewModel.kt │ │ │ │ ├── util │ │ │ │ ├── ImageViewEx.kt │ │ │ │ ├── MapboxEx.kt │ │ │ │ ├── ObservableEx.kt │ │ │ │ └── RecyclerViewEx.kt │ │ │ │ └── view │ │ │ │ └── MapViewSupportViewPager.kt │ │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_photo_view.xml │ │ │ ├── fragment_explore.xml │ │ │ ├── fragment_map.xml │ │ │ ├── fragment_search.xml │ │ │ ├── recycler_item_comment.xml │ │ │ ├── recycler_item_explore.xml │ │ │ ├── recycler_item_map.xml │ │ │ ├── recycler_item_recent_search.xml │ │ │ └── recycler_item_search.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_comment_black_24dp.png │ │ │ ├── ic_eye_black_24dp.png │ │ │ ├── ic_landscape_black_36dp.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_map_black_36dp.png │ │ │ └── ic_search_black_36dp.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_comment_black_24dp.png │ │ │ ├── ic_eye_black_24dp.png │ │ │ ├── ic_landscape_black_36dp.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_map_black_36dp.png │ │ │ └── ic_search_black_36dp.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_comment_black_24dp.png │ │ │ ├── ic_eye_black_24dp.png │ │ │ ├── ic_landscape_black_36dp.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_map_black_36dp.png │ │ │ └── ic_search_black_36dp.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_comment_black_24dp.png │ │ │ ├── ic_eye_black_24dp.png │ │ │ ├── ic_landscape_black_36dp.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_map_black_36dp.png │ │ │ └── ic_search_black_36dp.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_comment_black_24dp.png │ │ │ ├── ic_eye_black_24dp.png │ │ │ ├── ic_landscape_black_36dp.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_map_black_36dp.png │ │ │ └── ic_search_black_36dp.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ └── settings.gradle └── README.md ├── common.gypi ├── cookpit.gyp ├── cpp ├── .gitignore ├── README.md └── src │ ├── api.cpp │ ├── api.hpp │ ├── constants.hpp │ ├── coordinate.hpp │ ├── explore_controller.cpp │ ├── explore_controller.hpp │ ├── map_controller.cpp │ ├── map_controller.hpp │ ├── photo_comment_controller.cpp │ ├── photo_comment_controller.hpp │ ├── photo_detail_controller.cpp │ ├── photo_detail_controller.hpp │ ├── search_controller.cpp │ ├── search_controller.hpp │ ├── translator │ ├── JniMarshal+Coordinate.hpp │ └── ObjcMarshal+Coordinate.hpp │ ├── utility.cpp │ └── utility.hpp ├── djinni ├── api.djinni ├── coordinate.yaml ├── explore.djinni ├── map.djinni ├── photo.djinni └── search.djinni ├── ios ├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── Cookpit.xcworkspace │ └── contents.xcworkspacedata ├── Cookpit │ ├── Cookpit.xcodeproj │ │ └── project.pbxproj │ └── Cookpit │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── ic_comment.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_comment.png │ │ │ ├── ic_comment_2x.png │ │ │ └── ic_comment_3x.png │ │ ├── ic_eye.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_remove_red_eye.png │ │ │ ├── ic_remove_red_eye_2x.png │ │ │ └── ic_remove_red_eye_3x.png │ │ ├── ic_landscape_36pt.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_landscape_36pt.png │ │ │ ├── ic_landscape_36pt_2x.png │ │ │ └── ic_landscape_36pt_3x.png │ │ ├── ic_map_36pt.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_map_36pt.png │ │ │ ├── ic_map_36pt_2x.png │ │ │ └── ic_map_36pt_3x.png │ │ └── ic_search_36pt.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_search_36pt.png │ │ │ ├── ic_search_36pt_2x.png │ │ │ └── ic_search_36pt_3x.png │ │ ├── Async.swift │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Cookpit-Bridging-Header.h │ │ ├── ExploreCollectionViewCell.swift │ │ ├── ExploreDataController.swift │ │ ├── ExploreViewController.swift │ │ ├── ExploreViewModel.swift │ │ ├── Info.plist │ │ ├── MapCollectionViewCell.swift │ │ ├── MapDataController.swift │ │ ├── MapViewController.swift │ │ ├── MapViewModel.swift │ │ ├── NSValue+Coordinate2D.swift │ │ ├── PhotoCommentTableViewCell.swift │ │ ├── PhotoDataController.swift │ │ ├── PhotoDetailViewModel.swift │ │ ├── PhotoViewController.swift │ │ ├── SearchDataController.swift │ │ ├── SearchTableViewCell.swift │ │ ├── SearchViewController.swift │ │ ├── SearchViewModel.swift │ │ └── UIScrollView+RxLoadMore.swift └── README.md ├── utils ├── clang-format ├── glob.py ├── run_clang └── run_djinni └── vendors ├── .gitignore ├── curl.mk ├── curl ├── android │ ├── bin │ │ ├── arm64-v8a │ │ │ └── libcurl.a │ │ ├── armeabi-v7a │ │ │ └── libcurl.a │ │ ├── armeabi │ │ │ └── libcurl.a │ │ ├── mips │ │ │ └── libcurl.a │ │ ├── mips64 │ │ │ └── libcurl.a │ │ ├── x86 │ │ │ └── libcurl.a │ │ └── x86_64 │ │ │ └── libcurl.a │ └── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ └── curl │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── curl.h │ │ ├── curlbuild.h │ │ ├── curlbuild.h.cmake │ │ ├── curlbuild.h.dist │ │ ├── curlbuild.h.in │ │ ├── curlrules.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stamp-h2 │ │ ├── stdcheaders.h │ │ └── typecheck-gcc.h ├── ios │ ├── bin │ │ └── libcurl.a │ └── include │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ └── curl │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── curl.h │ │ ├── curlbuild.h │ │ ├── curlbuild.h.cmake │ │ ├── curlbuild.h.dist │ │ ├── curlbuild.h.in │ │ ├── curlrules.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stamp-h2 │ │ ├── stdcheaders.h │ │ └── typecheck-gcc.h └── lib │ ├── bin │ └── libcurl.a │ └── include │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ └── curl │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── curl.h │ ├── curlbuild.h │ ├── curlbuild.h.cmake │ ├── curlbuild.h.dist │ ├── curlbuild.h.in │ ├── curlrules.h │ ├── curlver.h │ ├── easy.h │ ├── mprintf.h │ ├── multi.h │ ├── stamp-h2 │ ├── stdcheaders.h │ └── typecheck-gcc.h ├── djinni ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── common.gypi ├── deps │ └── java │ │ ├── CREDITS.md │ │ ├── jsr305-3.0.0.jar │ │ └── test │ │ ├── hamcrest-core-1.3.jar │ │ └── junit-4.11.jar ├── example │ ├── Makefile │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── copyright │ │ │ │ └── profiles_settings.xml │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── android.iml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── app.iml │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── example.djinni │ ├── example.yaml │ ├── generated-src │ │ ├── cpp │ │ │ ├── item_list.hpp │ │ │ ├── sort_items.hpp │ │ │ ├── sort_order.hpp │ │ │ └── textbox_listener.hpp │ │ ├── java │ │ │ └── com │ │ │ │ └── dropbox │ │ │ │ └── textsort │ │ │ │ ├── ItemList.java │ │ │ │ ├── SortItems.java │ │ │ │ ├── SortOrder.java │ │ │ │ └── TextboxListener.java │ │ ├── jni │ │ │ ├── NativeItemList.cpp │ │ │ ├── NativeItemList.hpp │ │ │ ├── NativeSortItems.cpp │ │ │ ├── NativeSortItems.hpp │ │ │ ├── NativeSortOrder.hpp │ │ │ ├── NativeTextboxListener.cpp │ │ │ └── NativeTextboxListener.hpp │ │ └── objc │ │ │ ├── TXSItemList+Private.h │ │ │ ├── TXSItemList+Private.mm │ │ │ ├── TXSItemList.h │ │ │ ├── TXSItemList.mm │ │ │ ├── TXSSortItems+Private.h │ │ │ ├── TXSSortItems+Private.mm │ │ │ ├── TXSSortItems.h │ │ │ ├── TXSSortOrder.h │ │ │ ├── TXSTextboxListener+Private.h │ │ │ ├── TXSTextboxListener+Private.mm │ │ │ └── TXSTextboxListener.h │ ├── glob.py │ ├── handwritten-src │ │ ├── cpp │ │ │ ├── sort_items_impl.cpp │ │ │ └── sort_items_impl.hpp │ │ ├── java │ │ │ └── com │ │ │ │ └── dropbox │ │ │ │ └── textsort │ │ │ │ ├── MainActivity.java │ │ │ │ └── TextboxListenerImpl.java │ │ └── objc │ │ │ ├── TXSAppDelegate.h │ │ │ ├── TXSAppDelegate.m │ │ │ ├── TXSTextboxListenerImpl.h │ │ │ ├── TXSTextboxListenerImpl.m │ │ │ ├── TXSViewController.h │ │ │ ├── TXSViewController.m │ │ │ └── main.mm │ ├── libtextsort.gyp │ ├── local.properties.sample │ ├── localhost │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.xml │ │ ├── handwritten-src │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dropbox │ │ │ │ └── textsort │ │ │ │ └── SortTest.java │ │ └── run_in_docker.sh │ ├── objc │ │ ├── TextSort.xcodeproj │ │ │ ├── .gitignore │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TextSort.xcscheme │ │ ├── TextSort.xcworkspace │ │ │ ├── .gitignore │ │ │ └── contents.xcworkspacedata │ │ └── TextSort │ │ │ ├── Base.lproj │ │ │ └── Main_iPhone.storyboard │ │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ │ ├── TextSort-Info.plist │ │ │ ├── TextSort-Prefix.pch │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ └── run_djinni.sh ├── extension-libs │ ├── extension-libs.iml │ ├── jni-exceptions │ │ └── custom_exception_type.cpp │ └── platform-threads │ │ ├── android │ │ └── com │ │ │ └── dropbox │ │ │ └── djinni │ │ │ └── extension_libs │ │ │ └── platform_threads │ │ │ └── AndroidPlatformThreads.java │ │ ├── cpp │ │ └── platform_threads_impl.hpp │ │ ├── djinni │ │ └── platform-threads.djinni │ │ ├── java │ │ └── com │ │ │ └── dropbox │ │ │ └── djinni │ │ │ └── extension_libs │ │ │ └── platform_threads │ │ │ └── JavaPlatformThreads.java │ │ ├── objc │ │ ├── DJIObjCPlatformThreads.h │ │ └── DJIObjCPlatformThreads.m │ │ └── platform-threads.gyp ├── intellij-plugin │ ├── META-INF │ │ └── plugin.xml │ ├── README.md │ ├── djinni.iml │ ├── gen │ │ └── com │ │ │ └── dropbox │ │ │ └── djinni │ │ │ └── ideaplugin │ │ │ ├── parser │ │ │ ├── DjinniParser.java │ │ │ └── YamlParser.java │ │ │ └── psi │ │ │ ├── DjinniBasicType.java │ │ │ ├── DjinniConstMember.java │ │ │ ├── DjinniConstNamedValue.java │ │ │ ├── DjinniConstRecordMemberElement.java │ │ │ ├── DjinniConstReference.java │ │ │ ├── DjinniConstValue.java │ │ │ ├── DjinniDerivingParam.java │ │ │ ├── DjinniDerivingParamList.java │ │ │ ├── DjinniEnumMember.java │ │ │ ├── DjinniEnumTypeVariant.java │ │ │ ├── DjinniEnumValue.java │ │ │ ├── DjinniExternStatement.java │ │ │ ├── DjinniGenerator.java │ │ │ ├── DjinniGenericBasicType.java │ │ │ ├── DjinniGenericBasicTypeDualParameter.java │ │ │ ├── DjinniGenericBasicTypeSingleParameter.java │ │ │ ├── DjinniImportStatement.java │ │ │ ├── DjinniInterfaceFunctionParam.java │ │ │ ├── DjinniInterfaceFunctionParamList.java │ │ │ ├── DjinniInterfaceMember.java │ │ │ ├── DjinniInterfaceMemberFunction.java │ │ │ ├── DjinniInterfaceTypeVariant.java │ │ │ ├── DjinniPredefinedType.java │ │ │ ├── DjinniRecordMember.java │ │ │ ├── DjinniRecordMemberVariable.java │ │ │ ├── DjinniRecordTypeVariant.java │ │ │ ├── DjinniTypeDefinition.java │ │ │ ├── DjinniTypeReference.java │ │ │ ├── DjinniTypes.java │ │ │ ├── DjinniVisitor.java │ │ │ ├── YamlEntry.java │ │ │ ├── YamlLhs.java │ │ │ ├── YamlRhs.java │ │ │ ├── YamlTypes.java │ │ │ ├── YamlVisitor.java │ │ │ └── impl │ │ │ ├── DjinniBasicTypeImpl.java │ │ │ ├── DjinniConstMemberImpl.java │ │ │ ├── DjinniConstNamedValueImpl.java │ │ │ ├── DjinniConstRecordMemberElementImpl.java │ │ │ ├── DjinniConstReferenceImpl.java │ │ │ ├── DjinniConstValueImpl.java │ │ │ ├── DjinniDerivingParamImpl.java │ │ │ ├── DjinniDerivingParamListImpl.java │ │ │ ├── DjinniEnumMemberImpl.java │ │ │ ├── DjinniEnumTypeVariantImpl.java │ │ │ ├── DjinniEnumValueImpl.java │ │ │ ├── DjinniExternStatementImpl.java │ │ │ ├── DjinniGeneratorImpl.java │ │ │ ├── DjinniGenericBasicTypeDualParameterImpl.java │ │ │ ├── DjinniGenericBasicTypeImpl.java │ │ │ ├── DjinniGenericBasicTypeSingleParameterImpl.java │ │ │ ├── DjinniImportStatementImpl.java │ │ │ ├── DjinniInterfaceFunctionParamImpl.java │ │ │ ├── DjinniInterfaceFunctionParamListImpl.java │ │ │ ├── DjinniInterfaceMemberFunctionImpl.java │ │ │ ├── DjinniInterfaceMemberImpl.java │ │ │ ├── DjinniInterfaceTypeVariantImpl.java │ │ │ ├── DjinniPredefinedTypeImpl.java │ │ │ ├── DjinniRecordMemberImpl.java │ │ │ ├── DjinniRecordMemberVariableImpl.java │ │ │ ├── DjinniRecordTypeVariantImpl.java │ │ │ ├── DjinniTypeDefinitionImpl.java │ │ │ ├── DjinniTypeReferenceImpl.java │ │ │ ├── YamlEntryImpl.java │ │ │ ├── YamlLhsImpl.java │ │ │ └── YamlRhsImpl.java │ └── src │ │ └── com │ │ └── dropbox │ │ └── djinni │ │ ├── ideaplugin │ │ ├── Djinni.bnf │ │ ├── DjinniAnnotator.java │ │ ├── DjinniBlock.java │ │ ├── DjinniChooseByNameContributor.java │ │ ├── DjinniColorSettingsPage.java │ │ ├── DjinniCommenter.java │ │ ├── DjinniCompletionContributor.java │ │ ├── DjinniCreateTypeDefinitionQuickFix.java │ │ ├── DjinniExternReference.java │ │ ├── DjinniFileType.java │ │ ├── DjinniFileTypeFactory.java │ │ ├── DjinniFindUsagesProvider.java │ │ ├── DjinniFoldingBuilder.java │ │ ├── DjinniFormattingModelBuilder.java │ │ ├── DjinniIcons.java │ │ ├── DjinniImportReference.java │ │ ├── DjinniLanguage.java │ │ ├── DjinniLexerAdapter.java │ │ ├── DjinniParserDefinition.java │ │ ├── DjinniReference.java │ │ ├── DjinniReferenceContributor.java │ │ ├── DjinniStructureViewElement.java │ │ ├── DjinniStructureViewFactory.java │ │ ├── DjinniStructureViewModel.java │ │ ├── DjinniSyntaxHighlighter.java │ │ ├── DjinniSyntaxHighlighterFactory.java │ │ ├── DjinniUtil.java │ │ ├── DjinniValueReference.java │ │ ├── YamlFileType.java │ │ ├── YamlLanguage.java │ │ ├── YamlLexer.flex │ │ ├── YamlLexer.java │ │ ├── YamlLexerAdapter.java │ │ ├── YamlParserDefinition.java │ │ ├── _DjinniLexer.flex │ │ ├── _DjinniLexer.java │ │ ├── psi │ │ │ ├── DjinniElementFactory.java │ │ │ ├── DjinniElementType.java │ │ │ ├── DjinniFile.java │ │ │ ├── DjinniNamedElement.java │ │ │ ├── DjinniTokenType.java │ │ │ ├── YamlElementType.java │ │ │ ├── YamlFile.java │ │ │ ├── YamlTokenType.java │ │ │ └── impl │ │ │ │ ├── DjinniImportStatementBaseImpl.java │ │ │ │ ├── DjinniNamedElementImpl.java │ │ │ │ ├── DjinniPsiImplUtil.java │ │ │ │ ├── DjinniReferenceImpl.java │ │ │ │ └── YamlPsiImplUtil.java │ │ └── yaml.bnf │ │ └── resources │ │ └── djinni.png ├── src │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── highlighting.xml │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── libraries │ │ │ ├── SBT__com_github_scopt_scopt_2_11_3_2_0_jar.xml │ │ │ ├── SBT__org_scala_lang_modules_scala_parser_combinators_2_11_1_0_1_jar.xml │ │ │ ├── SBT__org_scala_lang_scala_library_2_11_0_jar.xml │ │ │ └── SBT__org_yaml_snakeyaml_1_15_jar.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── modules │ │ │ ├── src-build.iml │ │ │ └── src.iml │ │ ├── runConfigurations │ │ │ ├── djinni_Main__Example_.xml │ │ │ └── djinni_Main__Test_Suite_.xml │ │ ├── sbt.xml │ │ ├── scala_compiler.xml │ │ ├── uiDesigner.xml │ │ └── vcs.xml │ ├── ReadMe.txt │ ├── build │ ├── build.sbt │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ ├── run │ ├── run-assume-built │ ├── source │ │ ├── BaseObjcGenerator.scala │ │ ├── CppGenerator.scala │ │ ├── CppMarshal.scala │ │ ├── JNIGenerator.scala │ │ ├── JNIMarshal.scala │ │ ├── JavaGenerator.scala │ │ ├── JavaMarshal.scala │ │ ├── Main.scala │ │ ├── Marshal.scala │ │ ├── ObjcGenerator.scala │ │ ├── ObjcMarshal.scala │ │ ├── ObjcppGenerator.scala │ │ ├── ObjcppMarshal.scala │ │ ├── YamlGenerator.scala │ │ ├── ast.scala │ │ ├── generator.scala │ │ ├── meta.scala │ │ ├── parser.scala │ │ ├── resolver.scala │ │ ├── syntax.scala │ │ └── writer.scala │ └── support │ │ ├── sbt │ │ ├── sbt-launch.jar │ │ ├── sbt.resolvers.properties │ │ └── sbt.security.policy ├── support-lib │ ├── djinni_common.hpp │ ├── java │ │ └── com │ │ │ └── dropbox │ │ │ └── djinni │ │ │ └── NativeLibLoader.java │ ├── jni │ │ ├── Marshal.hpp │ │ ├── djinni_main.cpp │ │ ├── djinni_support.cpp │ │ └── djinni_support.hpp │ ├── objc │ │ ├── DJICppWrapperCache+Private.h │ │ ├── DJIError.h │ │ ├── DJIError.mm │ │ ├── DJIMarshal+Private.h │ │ ├── DJIObjcWrapperCache+Private.h │ │ └── DJIProxyCaches.mm │ ├── proxy_cache_impl.hpp │ ├── proxy_cache_interface.hpp │ ├── support-lib.iml │ └── support_lib.gyp ├── test-suite │ ├── Makefile │ ├── README.md │ ├── djinni │ │ ├── all.djinni │ │ ├── client_interface.djinni │ │ ├── common.djinni │ │ ├── constants.djinni │ │ ├── date.djinni │ │ ├── date.yaml │ │ ├── derivings.djinni │ │ ├── duration.djinni │ │ ├── duration.yaml │ │ ├── enum.djinni │ │ ├── exception.djinni │ │ ├── extended_record.djinni │ │ ├── map.djinni │ │ ├── multiple_inheritance.djinni │ │ ├── nested_collection.djinni │ │ ├── primitive_list.djinni │ │ ├── primtypes.djinni │ │ ├── set.djinni │ │ ├── single_language_interfaces.djinni │ │ ├── test.djinni │ │ ├── user_token.djinni │ │ └── yaml-test.djinni │ ├── generated-src │ │ ├── cpp │ │ │ ├── Conflict.hpp │ │ │ ├── assorted_primitives.cpp │ │ │ ├── assorted_primitives.hpp │ │ │ ├── client_interface.hpp │ │ │ ├── client_returned_record.hpp │ │ │ ├── color.hpp │ │ │ ├── conflict_user.hpp │ │ │ ├── constant_record.hpp │ │ │ ├── constants.cpp │ │ │ ├── constants.hpp │ │ │ ├── constants_interface.cpp │ │ │ ├── constants_interface.hpp │ │ │ ├── cpp_exception.hpp │ │ │ ├── date_record.cpp │ │ │ ├── date_record.hpp │ │ │ ├── empty_record.hpp │ │ │ ├── extended_record_base.cpp │ │ │ ├── extended_record_base.hpp │ │ │ ├── extern_interface_1.hpp │ │ │ ├── extern_interface_2.hpp │ │ │ ├── extern_record_with_derivings.cpp │ │ │ ├── extern_record_with_derivings.hpp │ │ │ ├── first_listener.hpp │ │ │ ├── java_only_listener.hpp │ │ │ ├── listener_caller.hpp │ │ │ ├── map_date_record.hpp │ │ │ ├── map_list_record.hpp │ │ │ ├── map_record.hpp │ │ │ ├── nested_collection.hpp │ │ │ ├── objc_only_listener.hpp │ │ │ ├── opt_color_record.hpp │ │ │ ├── primitive_list.hpp │ │ │ ├── record_with_derivings.cpp │ │ │ ├── record_with_derivings.hpp │ │ │ ├── record_with_duration_and_derivings.cpp │ │ │ ├── record_with_duration_and_derivings.hpp │ │ │ ├── record_with_nested_derivings.cpp │ │ │ ├── record_with_nested_derivings.hpp │ │ │ ├── return_one.hpp │ │ │ ├── return_two.hpp │ │ │ ├── reverse_client_interface.hpp │ │ │ ├── second_listener.hpp │ │ │ ├── set_record.hpp │ │ │ ├── test_duration.hpp │ │ │ ├── test_helpers.hpp │ │ │ ├── user_token.hpp │ │ │ └── uses_single_language_listeners.hpp │ │ ├── inFileList.txt │ │ ├── java │ │ │ └── com │ │ │ │ └── dropbox │ │ │ │ └── djinni │ │ │ │ └── test │ │ │ │ ├── AssortedPrimitives.java │ │ │ │ ├── ClientInterface.java │ │ │ │ ├── ClientReturnedRecord.java │ │ │ │ ├── Color.java │ │ │ │ ├── Conflict.java │ │ │ │ ├── ConflictUser.java │ │ │ │ ├── ConstantRecord.java │ │ │ │ ├── Constants.java │ │ │ │ ├── ConstantsInterface.java │ │ │ │ ├── CppException.java │ │ │ │ ├── DateRecord.java │ │ │ │ ├── EmptyRecord.java │ │ │ │ ├── ExtendedRecord.java │ │ │ │ ├── ExternInterface1.java │ │ │ │ ├── ExternInterface2.java │ │ │ │ ├── ExternRecordWithDerivings.java │ │ │ │ ├── FirstListener.java │ │ │ │ ├── JavaOnlyListener.java │ │ │ │ ├── ListenerCaller.java │ │ │ │ ├── MapDateRecord.java │ │ │ │ ├── MapListRecord.java │ │ │ │ ├── MapRecord.java │ │ │ │ ├── NestedCollection.java │ │ │ │ ├── ObjcOnlyListener.java │ │ │ │ ├── OptColorRecord.java │ │ │ │ ├── PrimitiveList.java │ │ │ │ ├── RecordWithDerivings.java │ │ │ │ ├── RecordWithDurationAndDerivings.java │ │ │ │ ├── RecordWithNestedDerivings.java │ │ │ │ ├── ReturnOne.java │ │ │ │ ├── ReturnTwo.java │ │ │ │ ├── ReverseClientInterface.java │ │ │ │ ├── SecondListener.java │ │ │ │ ├── SetRecord.java │ │ │ │ ├── TestDuration.java │ │ │ │ ├── TestHelpers.java │ │ │ │ ├── UserToken.java │ │ │ │ └── UsesSingleLanguageListeners.java │ │ ├── jni │ │ │ ├── NativeAssortedPrimitives.cpp │ │ │ ├── NativeAssortedPrimitives.hpp │ │ │ ├── NativeClientInterface.cpp │ │ │ ├── NativeClientInterface.hpp │ │ │ ├── NativeClientReturnedRecord.cpp │ │ │ ├── NativeClientReturnedRecord.hpp │ │ │ ├── NativeColor.hpp │ │ │ ├── NativeConflict.cpp │ │ │ ├── NativeConflict.hpp │ │ │ ├── NativeConflictUser.cpp │ │ │ ├── NativeConflictUser.hpp │ │ │ ├── NativeConstantRecord.cpp │ │ │ ├── NativeConstantRecord.hpp │ │ │ ├── NativeConstants.cpp │ │ │ ├── NativeConstants.hpp │ │ │ ├── NativeConstantsInterface.cpp │ │ │ ├── NativeConstantsInterface.hpp │ │ │ ├── NativeCppException.cpp │ │ │ ├── NativeCppException.hpp │ │ │ ├── NativeDateRecord.cpp │ │ │ ├── NativeDateRecord.hpp │ │ │ ├── NativeEmptyRecord.cpp │ │ │ ├── NativeEmptyRecord.hpp │ │ │ ├── NativeExtendedRecord.cpp │ │ │ ├── NativeExtendedRecord.hpp │ │ │ ├── NativeExternInterface1.cpp │ │ │ ├── NativeExternInterface1.hpp │ │ │ ├── NativeExternInterface2.cpp │ │ │ ├── NativeExternInterface2.hpp │ │ │ ├── NativeExternRecordWithDerivings.cpp │ │ │ ├── NativeExternRecordWithDerivings.hpp │ │ │ ├── NativeFirstListener.cpp │ │ │ ├── NativeFirstListener.hpp │ │ │ ├── NativeJavaOnlyListener.cpp │ │ │ ├── NativeJavaOnlyListener.hpp │ │ │ ├── NativeListenerCaller.cpp │ │ │ ├── NativeListenerCaller.hpp │ │ │ ├── NativeMapDateRecord.cpp │ │ │ ├── NativeMapDateRecord.hpp │ │ │ ├── NativeMapListRecord.cpp │ │ │ ├── NativeMapListRecord.hpp │ │ │ ├── NativeMapRecord.cpp │ │ │ ├── NativeMapRecord.hpp │ │ │ ├── NativeNestedCollection.cpp │ │ │ ├── NativeNestedCollection.hpp │ │ │ ├── NativeObjcOnlyListener.cpp │ │ │ ├── NativeObjcOnlyListener.hpp │ │ │ ├── NativeOptColorRecord.cpp │ │ │ ├── NativeOptColorRecord.hpp │ │ │ ├── NativePrimitiveList.cpp │ │ │ ├── NativePrimitiveList.hpp │ │ │ ├── NativeRecordWithDerivings.cpp │ │ │ ├── NativeRecordWithDerivings.hpp │ │ │ ├── NativeRecordWithDurationAndDerivings.cpp │ │ │ ├── NativeRecordWithDurationAndDerivings.hpp │ │ │ ├── NativeRecordWithNestedDerivings.cpp │ │ │ ├── NativeRecordWithNestedDerivings.hpp │ │ │ ├── NativeReturnOne.cpp │ │ │ ├── NativeReturnOne.hpp │ │ │ ├── NativeReturnTwo.cpp │ │ │ ├── NativeReturnTwo.hpp │ │ │ ├── NativeReverseClientInterface.cpp │ │ │ ├── NativeReverseClientInterface.hpp │ │ │ ├── NativeSecondListener.cpp │ │ │ ├── NativeSecondListener.hpp │ │ │ ├── NativeSetRecord.cpp │ │ │ ├── NativeSetRecord.hpp │ │ │ ├── NativeTestDuration.cpp │ │ │ ├── NativeTestDuration.hpp │ │ │ ├── NativeTestHelpers.cpp │ │ │ ├── NativeTestHelpers.hpp │ │ │ ├── NativeUserToken.cpp │ │ │ ├── NativeUserToken.hpp │ │ │ ├── NativeUsesSingleLanguageListeners.cpp │ │ │ └── NativeUsesSingleLanguageListeners.hpp │ │ ├── objc │ │ │ ├── DBAssortedPrimitives+Private.h │ │ │ ├── DBAssortedPrimitives+Private.mm │ │ │ ├── DBAssortedPrimitives.h │ │ │ ├── DBAssortedPrimitives.mm │ │ │ ├── DBClientInterface+Private.h │ │ │ ├── DBClientInterface+Private.mm │ │ │ ├── DBClientInterface.h │ │ │ ├── DBClientReturnedRecord+Private.h │ │ │ ├── DBClientReturnedRecord+Private.mm │ │ │ ├── DBClientReturnedRecord.h │ │ │ ├── DBClientReturnedRecord.mm │ │ │ ├── DBColor.h │ │ │ ├── DBConflict+Private.h │ │ │ ├── DBConflict+Private.mm │ │ │ ├── DBConflict.h │ │ │ ├── DBConflictUser+Private.h │ │ │ ├── DBConflictUser+Private.mm │ │ │ ├── DBConflictUser.h │ │ │ ├── DBConstantRecord+Private.h │ │ │ ├── DBConstantRecord+Private.mm │ │ │ ├── DBConstantRecord.h │ │ │ ├── DBConstantRecord.mm │ │ │ ├── DBConstants+Private.h │ │ │ ├── DBConstants+Private.mm │ │ │ ├── DBConstants.h │ │ │ ├── DBConstants.mm │ │ │ ├── DBConstantsInterface+Private.h │ │ │ ├── DBConstantsInterface+Private.mm │ │ │ ├── DBConstantsInterface.h │ │ │ ├── DBConstantsInterface.mm │ │ │ ├── DBCppException+Private.h │ │ │ ├── DBCppException+Private.mm │ │ │ ├── DBCppException.h │ │ │ ├── DBDateRecord+Private.h │ │ │ ├── DBDateRecord+Private.mm │ │ │ ├── DBDateRecord.h │ │ │ ├── DBDateRecord.mm │ │ │ ├── DBEmptyRecord+Private.h │ │ │ ├── DBEmptyRecord+Private.mm │ │ │ ├── DBEmptyRecord.h │ │ │ ├── DBEmptyRecord.mm │ │ │ ├── DBExtendedRecord+Private.h │ │ │ ├── DBExtendedRecord+Private.mm │ │ │ ├── DBExtendedRecord.h │ │ │ ├── DBExtendedRecord.mm │ │ │ ├── DBExternInterface1+Private.h │ │ │ ├── DBExternInterface1+Private.mm │ │ │ ├── DBExternInterface1.h │ │ │ ├── DBExternInterface2+Private.h │ │ │ ├── DBExternInterface2+Private.mm │ │ │ ├── DBExternInterface2.h │ │ │ ├── DBExternRecordWithDerivings+Private.h │ │ │ ├── DBExternRecordWithDerivings+Private.mm │ │ │ ├── DBExternRecordWithDerivings.h │ │ │ ├── DBExternRecordWithDerivings.mm │ │ │ ├── DBFirstListener+Private.h │ │ │ ├── DBFirstListener+Private.mm │ │ │ ├── DBFirstListener.h │ │ │ ├── DBJavaOnlyListener+Private.h │ │ │ ├── DBJavaOnlyListener+Private.mm │ │ │ ├── DBJavaOnlyListener.h │ │ │ ├── DBListenerCaller+Private.h │ │ │ ├── DBListenerCaller+Private.mm │ │ │ ├── DBListenerCaller.h │ │ │ ├── DBMapDateRecord+Private.h │ │ │ ├── DBMapDateRecord+Private.mm │ │ │ ├── DBMapDateRecord.h │ │ │ ├── DBMapDateRecord.mm │ │ │ ├── DBMapListRecord+Private.h │ │ │ ├── DBMapListRecord+Private.mm │ │ │ ├── DBMapListRecord.h │ │ │ ├── DBMapListRecord.mm │ │ │ ├── DBMapRecord+Private.h │ │ │ ├── DBMapRecord+Private.mm │ │ │ ├── DBMapRecord.h │ │ │ ├── DBMapRecord.mm │ │ │ ├── DBNestedCollection+Private.h │ │ │ ├── DBNestedCollection+Private.mm │ │ │ ├── DBNestedCollection.h │ │ │ ├── DBNestedCollection.mm │ │ │ ├── DBObjcOnlyListener+Private.h │ │ │ ├── DBObjcOnlyListener+Private.mm │ │ │ ├── DBObjcOnlyListener.h │ │ │ ├── DBOptColorRecord+Private.h │ │ │ ├── DBOptColorRecord+Private.mm │ │ │ ├── DBOptColorRecord.h │ │ │ ├── DBOptColorRecord.mm │ │ │ ├── DBPrimitiveList+Private.h │ │ │ ├── DBPrimitiveList+Private.mm │ │ │ ├── DBPrimitiveList.h │ │ │ ├── DBPrimitiveList.mm │ │ │ ├── DBRecordWithDerivings+Private.h │ │ │ ├── DBRecordWithDerivings+Private.mm │ │ │ ├── DBRecordWithDerivings.h │ │ │ ├── DBRecordWithDerivings.mm │ │ │ ├── DBRecordWithDurationAndDerivings+Private.h │ │ │ ├── DBRecordWithDurationAndDerivings+Private.mm │ │ │ ├── DBRecordWithDurationAndDerivings.h │ │ │ ├── DBRecordWithDurationAndDerivings.mm │ │ │ ├── DBRecordWithNestedDerivings+Private.h │ │ │ ├── DBRecordWithNestedDerivings+Private.mm │ │ │ ├── DBRecordWithNestedDerivings.h │ │ │ ├── DBRecordWithNestedDerivings.mm │ │ │ ├── DBReturnOne+Private.h │ │ │ ├── DBReturnOne+Private.mm │ │ │ ├── DBReturnOne.h │ │ │ ├── DBReturnTwo+Private.h │ │ │ ├── DBReturnTwo+Private.mm │ │ │ ├── DBReturnTwo.h │ │ │ ├── DBReverseClientInterface+Private.h │ │ │ ├── DBReverseClientInterface+Private.mm │ │ │ ├── DBReverseClientInterface.h │ │ │ ├── DBSecondListener+Private.h │ │ │ ├── DBSecondListener+Private.mm │ │ │ ├── DBSecondListener.h │ │ │ ├── DBSetRecord+Private.h │ │ │ ├── DBSetRecord+Private.mm │ │ │ ├── DBSetRecord.h │ │ │ ├── DBSetRecord.mm │ │ │ ├── DBTestDuration+Private.h │ │ │ ├── DBTestDuration+Private.mm │ │ │ ├── DBTestDuration.h │ │ │ ├── DBTestHelpers+Private.h │ │ │ ├── DBTestHelpers+Private.mm │ │ │ ├── DBTestHelpers.h │ │ │ ├── DBUserToken+Private.h │ │ │ ├── DBUserToken+Private.mm │ │ │ ├── DBUserToken.h │ │ │ ├── DBUsesSingleLanguageListeners+Private.h │ │ │ ├── DBUsesSingleLanguageListeners+Private.mm │ │ │ └── DBUsesSingleLanguageListeners.h │ │ └── outFileList.txt │ ├── handwritten-src │ │ ├── cpp │ │ │ ├── Duration-jni.hpp │ │ │ ├── Duration-objc.hpp │ │ │ ├── ListenerCaller.cpp │ │ │ ├── TranslateDuration.cpp │ │ │ ├── cpp_exception_impl.cpp │ │ │ ├── cpp_exception_impl.hpp │ │ │ ├── extended_record.cpp │ │ │ ├── extended_record.hpp │ │ │ ├── return_one_two.cpp │ │ │ ├── reverse_client_interface_impl.cpp │ │ │ ├── reverse_client_interface_impl.hpp │ │ │ └── test_helpers.cpp │ │ ├── java │ │ │ └── com │ │ │ │ └── dropbox │ │ │ │ └── djinni │ │ │ │ └── test │ │ │ │ ├── AllTests.java │ │ │ │ ├── ClientInterfaceImpl.java │ │ │ │ ├── ClientInterfaceTest.java │ │ │ │ ├── CppExceptionTest.java │ │ │ │ ├── DurationTest.java │ │ │ │ ├── EnumTest.java │ │ │ │ ├── MapRecordTest.java │ │ │ │ ├── MockRecordTest.java │ │ │ │ ├── NestedCollectionTest.java │ │ │ │ ├── PrimitiveListTest.java │ │ │ │ ├── PrimitivesTest.java │ │ │ │ ├── RecordWithDerivingsTest.java │ │ │ │ ├── SetRecordTest.java │ │ │ │ └── TokenTest.java │ │ └── objc │ │ │ ├── impl │ │ │ ├── DBClientInterfaceImpl.h │ │ │ └── DBClientInterfaceImpl.mm │ │ │ └── tests │ │ │ ├── DBClientInterfaceTests.mm │ │ │ ├── DBConstantTests.mm │ │ │ ├── DBCppExceptionTests.mm │ │ │ ├── DBDateRecordTests.mm │ │ │ ├── DBDurationTests.m │ │ │ ├── DBMapRecordTests.mm │ │ │ ├── DBMultipleInheritanceTests.m │ │ │ ├── DBNestedCollectionTests.mm │ │ │ ├── DBPrimitiveListTests.mm │ │ │ ├── DBPrimitivesTests.m │ │ │ ├── DBRecordWithDerivingsCppTests.mm │ │ │ ├── DBRecordWithDerivingsObjcTests.mm │ │ │ ├── DBSetRecordTests.mm │ │ │ ├── DBTokenTests.mm │ │ │ ├── DjinniObjcTestTests-Info.plist │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── java │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.xml │ │ └── docker │ │ │ ├── README.md │ │ │ ├── build_and_run_tests.sh │ │ │ ├── centos_6 │ │ │ └── Dockerfile │ │ │ ├── debian_jessie │ │ │ └── Dockerfile │ │ │ ├── run_dockerized_test.sh │ │ │ ├── ubuntu_trusty │ │ │ └── Dockerfile │ │ │ └── ubuntu_utopic │ │ │ └── Dockerfile │ ├── objc │ │ └── DjinniObjcTest.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── DjinniObjcTest.xcscheme │ ├── run_djinni.sh │ └── test-suite.iml └── tools │ └── format_whitespace ├── flowcpp ├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── README.md ├── include │ └── flowcpp │ │ ├── action.hpp │ │ ├── any.hpp │ │ ├── apply_middleware.hpp │ │ ├── common.h │ │ ├── create_store.hpp │ │ ├── disposable.hpp │ │ ├── flow.h │ │ ├── middleware.hpp │ │ ├── store.hpp │ │ └── thunk_middleware.hpp ├── main.cpp └── utils │ ├── clang-format │ └── run_clang ├── googletest.gyp ├── googletest ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── googlemock │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── README.md │ ├── build-aux │ │ └── .keep │ ├── configure.ac │ ├── docs │ │ ├── CheatSheet.md │ │ ├── CookBook.md │ │ ├── DesignDoc.md │ │ ├── DevGuide.md │ │ ├── Documentation.md │ │ ├── ForDummies.md │ │ ├── FrequentlyAskedQuestions.md │ │ ├── KnownIssues.md │ │ ├── v1_5 │ │ │ ├── CheatSheet.md │ │ │ ├── CookBook.md │ │ │ ├── Documentation.md │ │ │ ├── ForDummies.md │ │ │ └── FrequentlyAskedQuestions.md │ │ ├── v1_6 │ │ │ ├── CheatSheet.md │ │ │ ├── CookBook.md │ │ │ ├── Documentation.md │ │ │ ├── ForDummies.md │ │ │ └── FrequentlyAskedQuestions.md │ │ └── v1_7 │ │ │ ├── CheatSheet.md │ │ │ ├── CookBook.md │ │ │ ├── Documentation.md │ │ │ ├── ForDummies.md │ │ │ └── FrequentlyAskedQuestions.md │ ├── include │ │ └── gmock │ │ │ ├── gmock-actions.h │ │ │ ├── gmock-cardinalities.h │ │ │ ├── gmock-generated-actions.h │ │ │ ├── gmock-generated-actions.h.pump │ │ │ ├── gmock-generated-function-mockers.h │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ ├── gmock-generated-matchers.h │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ ├── gmock-generated-nice-strict.h │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ ├── gmock-matchers.h │ │ │ ├── gmock-more-actions.h │ │ │ ├── gmock-more-matchers.h │ │ │ ├── gmock-spec-builders.h │ │ │ ├── gmock.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── gmock-generated-actions.h │ │ │ ├── gmock-generated-actions.h.pump │ │ │ ├── gmock-matchers.h │ │ │ └── gmock-port.h │ │ │ ├── gmock-generated-internal-utils.h │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ ├── gmock-internal-utils.h │ │ │ └── gmock-port.h │ ├── make │ │ └── Makefile │ ├── msvc │ │ ├── 2005 │ │ │ ├── gmock.sln │ │ │ ├── gmock.vcproj │ │ │ ├── gmock_config.vsprops │ │ │ ├── gmock_main.vcproj │ │ │ └── gmock_test.vcproj │ │ ├── 2010 │ │ │ ├── gmock.sln │ │ │ ├── gmock.vcxproj │ │ │ ├── gmock_config.props │ │ │ ├── gmock_main.vcxproj │ │ │ └── gmock_test.vcxproj │ │ └── 2015 │ │ │ ├── gmock.sln │ │ │ ├── gmock.vcxproj │ │ │ ├── gmock_config.props │ │ │ ├── gmock_main.vcxproj │ │ │ └── gmock_test.vcxproj │ ├── scripts │ │ ├── fuse_gmock_files.py │ │ ├── generator │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── README.cppclean │ │ │ ├── cpp │ │ │ │ ├── __init__.py │ │ │ │ ├── ast.py │ │ │ │ ├── gmock_class.py │ │ │ │ ├── gmock_class_test.py │ │ │ │ ├── keywords.py │ │ │ │ ├── tokenize.py │ │ │ │ └── utils.py │ │ │ └── gmock_gen.py │ │ ├── gmock-config.in │ │ ├── gmock_doctor.py │ │ ├── upload.py │ │ └── upload_gmock.py │ ├── src │ │ ├── gmock-all.cc │ │ ├── gmock-cardinalities.cc │ │ ├── gmock-internal-utils.cc │ │ ├── gmock-matchers.cc │ │ ├── gmock-spec-builders.cc │ │ ├── gmock.cc │ │ └── gmock_main.cc │ └── test │ │ ├── gmock-actions_test.cc │ │ ├── gmock-cardinalities_test.cc │ │ ├── gmock-generated-actions_test.cc │ │ ├── gmock-generated-function-mockers_test.cc │ │ ├── gmock-generated-internal-utils_test.cc │ │ ├── gmock-generated-matchers_test.cc │ │ ├── gmock-internal-utils_test.cc │ │ ├── gmock-matchers_test.cc │ │ ├── gmock-more-actions_test.cc │ │ ├── gmock-nice-strict_test.cc │ │ ├── gmock-port_test.cc │ │ ├── gmock-spec-builders_test.cc │ │ ├── gmock_all_test.cc │ │ ├── gmock_ex_test.cc │ │ ├── gmock_leak_test.py │ │ ├── gmock_leak_test_.cc │ │ ├── gmock_link2_test.cc │ │ ├── gmock_link_test.cc │ │ ├── gmock_link_test.h │ │ ├── gmock_output_test.py │ │ ├── gmock_output_test_.cc │ │ ├── gmock_output_test_golden.txt │ │ ├── gmock_stress_test.cc │ │ ├── gmock_test.cc │ │ └── gmock_test_utils.py ├── googletest │ ├── .gitignore │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── README.md │ ├── build-aux │ │ └── .keep │ ├── cmake │ │ └── internal_utils.cmake │ ├── codegear │ │ ├── gtest.cbproj │ │ ├── gtest.groupproj │ │ ├── gtest_all.cc │ │ ├── gtest_link.cc │ │ ├── gtest_main.cbproj │ │ └── gtest_unittest.cbproj │ ├── configure.ac │ ├── docs │ │ ├── AdvancedGuide.md │ │ ├── DevGuide.md │ │ ├── Documentation.md │ │ ├── FAQ.md │ │ ├── Primer.md │ │ ├── PumpManual.md │ │ ├── Samples.md │ │ ├── V1_5_AdvancedGuide.md │ │ ├── V1_5_Documentation.md │ │ ├── V1_5_FAQ.md │ │ ├── V1_5_Primer.md │ │ ├── V1_5_PumpManual.md │ │ ├── V1_5_XcodeGuide.md │ │ ├── V1_6_AdvancedGuide.md │ │ ├── V1_6_Documentation.md │ │ ├── V1_6_FAQ.md │ │ ├── V1_6_Primer.md │ │ ├── V1_6_PumpManual.md │ │ ├── V1_6_Samples.md │ │ ├── V1_6_XcodeGuide.md │ │ ├── V1_7_AdvancedGuide.md │ │ ├── V1_7_Documentation.md │ │ ├── V1_7_FAQ.md │ │ ├── V1_7_Primer.md │ │ ├── V1_7_PumpManual.md │ │ ├── V1_7_Samples.md │ │ ├── V1_7_XcodeGuide.md │ │ └── XcodeGuide.md │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ ├── m4 │ │ ├── acx_pthread.m4 │ │ └── gtest.m4 │ ├── make │ │ └── Makefile │ ├── msvc │ │ ├── gtest-md.sln │ │ ├── gtest-md.vcproj │ │ ├── gtest.sln │ │ ├── gtest.vcproj │ │ ├── gtest_main-md.vcproj │ │ ├── gtest_main.vcproj │ │ ├── gtest_prod_test-md.vcproj │ │ ├── gtest_prod_test.vcproj │ │ ├── gtest_unittest-md.vcproj │ │ └── gtest_unittest.vcproj │ ├── samples │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample10_unittest.cc │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ ├── sample8_unittest.cc │ │ └── sample9_unittest.cc │ ├── scripts │ │ ├── common.py │ │ ├── fuse_gtest_files.py │ │ ├── gen_gtest_pred_impl.py │ │ ├── gtest-config.in │ │ ├── pump.py │ │ ├── release_docs.py │ │ ├── test │ │ │ └── Makefile │ │ ├── upload.py │ │ └── upload_gtest.py │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ ├── test │ │ ├── gtest-death-test_ex_test.cc │ │ ├── gtest-death-test_test.cc │ │ ├── gtest-filepath_test.cc │ │ ├── gtest-linked_ptr_test.cc │ │ ├── gtest-listener_test.cc │ │ ├── gtest-message_test.cc │ │ ├── gtest-options_test.cc │ │ ├── gtest-param-test2_test.cc │ │ ├── gtest-param-test_test.cc │ │ ├── gtest-param-test_test.h │ │ ├── gtest-port_test.cc │ │ ├── gtest-printers_test.cc │ │ ├── gtest-test-part_test.cc │ │ ├── gtest-tuple_test.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_break_on_failure_unittest.py │ │ ├── gtest_break_on_failure_unittest_.cc │ │ ├── gtest_catch_exceptions_test.py │ │ ├── gtest_catch_exceptions_test_.cc │ │ ├── gtest_color_test.py │ │ ├── gtest_color_test_.cc │ │ ├── gtest_env_var_test.py │ │ ├── gtest_env_var_test_.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_filter_unittest.py │ │ ├── gtest_filter_unittest_.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_list_tests_unittest.py │ │ ├── gtest_list_tests_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_output_test.py │ │ ├── gtest_output_test_.cc │ │ ├── gtest_output_test_golden_lin.txt │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_shuffle_test.py │ │ ├── gtest_shuffle_test_.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_throw_on_failure_test.py │ │ ├── gtest_throw_on_failure_test_.cc │ │ ├── gtest_uninitialized_test.py │ │ ├── gtest_uninitialized_test_.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h │ └── xcode │ │ ├── Config │ │ ├── DebugProject.xcconfig │ │ ├── FrameworkTarget.xcconfig │ │ ├── General.xcconfig │ │ ├── ReleaseProject.xcconfig │ │ ├── StaticLibraryTarget.xcconfig │ │ └── TestTarget.xcconfig │ │ ├── Resources │ │ └── Info.plist │ │ ├── Samples │ │ └── FrameworkSample │ │ │ ├── Info.plist │ │ │ ├── WidgetFramework.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── runtests.sh │ │ │ ├── widget.cc │ │ │ ├── widget.h │ │ │ └── widget_test.cc │ │ ├── Scripts │ │ ├── runtests.sh │ │ └── versiongenerate.py │ │ └── gtest.xcodeproj │ │ └── project.pbxproj └── travis.sh ├── gyp ├── .gitignore ├── AUTHORS ├── DEPS ├── LICENSE ├── OWNERS ├── PRESUBMIT.py ├── README.md ├── buildbot │ ├── aosp_manifest.xml │ ├── buildbot_run.py │ └── commit_queue │ │ ├── OWNERS │ │ ├── README │ │ └── cq_config.json ├── codereview.settings ├── data │ └── win │ │ └── large-pdb-shim.cc ├── docs │ ├── Buildbot.md │ ├── GypVsCMake.md │ ├── Hacking.md │ ├── InputFormatReference.md │ ├── LanguageSpecification.md │ ├── Source.md │ ├── Testing.md │ └── UserDocumentation.md ├── gyp ├── gyp.bat ├── gyp_main.py ├── gyptest.py ├── pylib │ └── gyp │ │ ├── MSVSNew.py │ │ ├── MSVSProject.py │ │ ├── MSVSSettings.py │ │ ├── MSVSSettings_test.py │ │ ├── MSVSToolFile.py │ │ ├── MSVSUserFile.py │ │ ├── MSVSUtil.py │ │ ├── MSVSVersion.py │ │ ├── __init__.py │ │ ├── common.py │ │ ├── common_test.py │ │ ├── easy_xml.py │ │ ├── easy_xml_test.py │ │ ├── flock_tool.py │ │ ├── generator │ │ ├── __init__.py │ │ ├── analyzer.py │ │ ├── android.py │ │ ├── cmake.py │ │ ├── dump_dependency_json.py │ │ ├── eclipse.py │ │ ├── gypd.py │ │ ├── gypsh.py │ │ ├── make.py │ │ ├── msvs.py │ │ ├── msvs_test.py │ │ ├── ninja.py │ │ ├── ninja_test.py │ │ ├── xcode.py │ │ └── xcode_test.py │ │ ├── input.py │ │ ├── input_test.py │ │ ├── mac_tool.py │ │ ├── msvs_emulation.py │ │ ├── ninja_syntax.py │ │ ├── ordered_dict.py │ │ ├── simple_copy.py │ │ ├── win_tool.py │ │ ├── xcode_emulation.py │ │ ├── xcode_ninja.py │ │ ├── xcodeproj_file.py │ │ └── xml_fix.py ├── samples │ ├── samples │ └── samples.bat ├── setup.py ├── test │ ├── actions-bare │ │ ├── gyptest-bare.py │ │ └── src │ │ │ ├── bare.gyp │ │ │ └── bare.py │ ├── actions-depfile │ │ ├── depfile.gyp │ │ ├── gyptest-all.py │ │ └── input.txt │ ├── actions-multiple-outputs │ │ ├── gyptest-multiple-outputs.py │ │ └── src │ │ │ ├── multiple-outputs.gyp │ │ │ └── touch.py │ ├── actions-multiple │ │ ├── gyptest-all.py │ │ └── src │ │ │ ├── actions.gyp │ │ │ ├── copy.py │ │ │ ├── filter.py │ │ │ ├── foo.c │ │ │ ├── input.txt │ │ │ └── main.c │ ├── actions-none │ │ ├── gyptest-none.py │ │ └── src │ │ │ ├── fake_cross.py │ │ │ ├── foo.cc │ │ │ └── none_with_source_files.gyp │ ├── actions-subdir │ │ ├── gyptest-action.py │ │ └── src │ │ │ ├── make-file.py │ │ │ ├── none.gyp │ │ │ └── subdir │ │ │ ├── make-subdir-file.py │ │ │ └── subdir.gyp │ ├── actions │ │ ├── generated-header │ │ │ ├── action.py │ │ │ ├── main.cc │ │ │ └── test.gyp │ │ ├── gyptest-all.py │ │ ├── gyptest-default.py │ │ ├── gyptest-errors.py │ │ ├── gyptest-generated-header.py │ │ └── src │ │ │ ├── action_missing_name.gyp │ │ │ ├── actions.gyp │ │ │ ├── confirm-dep-files.py │ │ │ ├── subdir1 │ │ │ ├── counter.py │ │ │ ├── executable.gyp │ │ │ ├── make-prog1.py │ │ │ ├── make-prog2.py │ │ │ └── program.c │ │ │ ├── subdir2 │ │ │ ├── make-file.py │ │ │ └── none.gyp │ │ │ └── subdir3 │ │ │ ├── generate_main.py │ │ │ └── null_input.gyp │ ├── additional-targets │ │ ├── gyptest-additional.py │ │ └── src │ │ │ ├── all.gyp │ │ │ └── dir1 │ │ │ ├── actions.gyp │ │ │ ├── emit.py │ │ │ └── lib1.c │ ├── analyzer │ │ ├── common.gypi │ │ ├── gyptest-analyzer.py │ │ ├── subdir │ │ │ ├── subdir.gyp │ │ │ └── subdir2 │ │ │ │ └── subdir2.gyp │ │ ├── subdir2 │ │ │ ├── subdir.gyp │ │ │ └── subdir.includes.gypi │ │ ├── test.gyp │ │ ├── test2.gyp │ │ ├── test2.includes.gypi │ │ ├── test2.includes.includes.gypi │ │ ├── test2.toplevel_includes.gypi │ │ ├── test3.gyp │ │ ├── test4.gyp │ │ └── test5.gyp │ ├── android │ │ ├── 32or64.c │ │ ├── file.in │ │ ├── gyptest-host-multilib.py │ │ ├── gyptest-make-functions.py │ │ ├── gyptest-noalias.py │ │ ├── gyptest-settings-list.py │ │ ├── gyptest-settings.py │ │ ├── gyptest-space-filenames.py │ │ ├── hello.c │ │ ├── hello.gyp │ │ ├── host_32or64.gyp │ │ ├── make_functions.gyp │ │ ├── settings-list.gyp │ │ ├── settings.gyp │ │ ├── space_filenames.gyp │ │ └── writefile.c │ ├── arflags │ │ ├── gyptest-arflags.py │ │ ├── lib.cc │ │ └── test.gyp │ ├── assembly │ │ ├── gyptest-assembly.py │ │ ├── gyptest-override.py │ │ └── src │ │ │ ├── as.bat │ │ │ ├── assembly.gyp │ │ │ ├── lib1.S │ │ │ ├── lib1.c │ │ │ ├── override.gyp │ │ │ ├── override_asm.asm │ │ │ └── program.c │ ├── build-option │ │ ├── gyptest-build.py │ │ ├── hello.c │ │ └── hello.gyp │ ├── builddir │ │ ├── gyptest-all.py │ │ ├── gyptest-default.py │ │ └── src │ │ │ ├── builddir.gypi │ │ │ ├── func1.c │ │ │ ├── func2.c │ │ │ ├── func3.c │ │ │ ├── func4.c │ │ │ ├── func5.c │ │ │ ├── prog1.c │ │ │ ├── prog1.gyp │ │ │ └── subdir2 │ │ │ ├── prog2.c │ │ │ ├── prog2.gyp │ │ │ └── subdir3 │ │ │ ├── prog3.c │ │ │ ├── prog3.gyp │ │ │ └── subdir4 │ │ │ ├── prog4.c │ │ │ ├── prog4.gyp │ │ │ └── subdir5 │ │ │ ├── prog5.c │ │ │ └── prog5.gyp │ ├── cflags │ │ ├── cflags.c │ │ ├── cflags.gyp │ │ └── gyptest-cflags.py │ ├── compilable │ │ ├── gyptest-headers.py │ │ └── src │ │ │ ├── headers.gyp │ │ │ ├── lib1.cpp │ │ │ ├── lib1.hpp │ │ │ └── program.cpp │ ├── compiler-override │ │ ├── compiler-exe.gyp │ │ ├── compiler-global-settings.gyp.in │ │ ├── compiler-host.gyp │ │ ├── compiler-shared-lib.gyp │ │ ├── cxxtest.cc │ │ ├── gyptest-compiler-env-toolchain.py │ │ ├── gyptest-compiler-env.py │ │ ├── gyptest-compiler-global-settings.py │ │ ├── my_cc.py │ │ ├── my_cxx.py │ │ ├── my_ld.py │ │ ├── my_nm.py │ │ ├── my_readelf.py │ │ └── test.c │ ├── conditions │ │ └── elseif │ │ │ ├── elseif.gyp │ │ │ ├── elseif_bad1.gyp │ │ │ ├── elseif_bad2.gyp │ │ │ ├── elseif_bad3.gyp │ │ │ ├── elseif_conditions.gypi │ │ │ ├── gyptest_elseif.py │ │ │ └── program.cc │ ├── configurations │ │ ├── basics │ │ │ ├── configurations.c │ │ │ ├── configurations.gyp │ │ │ └── gyptest-configurations.py │ │ ├── inheritance │ │ │ ├── configurations.c │ │ │ ├── configurations.gyp │ │ │ ├── duplicates.gyp │ │ │ ├── duplicates.gypd.golden │ │ │ ├── gyptest-duplicates.py │ │ │ └── gyptest-inheritance.py │ │ ├── invalid │ │ │ ├── actions.gyp │ │ │ ├── all_dependent_settings.gyp │ │ │ ├── configurations.gyp │ │ │ ├── dependencies.gyp │ │ │ ├── direct_dependent_settings.gyp │ │ │ ├── gyptest-configurations.py │ │ │ ├── libraries.gyp │ │ │ ├── link_settings.gyp │ │ │ ├── sources.gyp │ │ │ ├── standalone_static_library.gyp │ │ │ ├── target_name.gyp │ │ │ └── type.gyp │ │ ├── target_platform │ │ │ ├── configurations.gyp │ │ │ ├── front.c │ │ │ ├── gyptest-target_platform.py │ │ │ ├── left.c │ │ │ └── right.c │ │ └── x64 │ │ │ ├── configurations.c │ │ │ ├── configurations.gyp │ │ │ └── gyptest-x86.py │ ├── copies │ │ ├── gyptest-all.py │ │ ├── gyptest-attribs.py │ │ ├── gyptest-default.py │ │ ├── gyptest-samedir.py │ │ ├── gyptest-slash.py │ │ ├── gyptest-updir.py │ │ └── src │ │ │ ├── copies-attribs.gyp │ │ │ ├── copies-samedir.gyp │ │ │ ├── copies-slash.gyp │ │ │ ├── copies-updir.gyp │ │ │ ├── copies.gyp │ │ │ ├── directory │ │ │ ├── file3 │ │ │ ├── file4 │ │ │ └── subdir │ │ │ │ └── file5 │ │ │ ├── executable-file.sh │ │ │ ├── file1 │ │ │ ├── file2 │ │ │ └── parentdir │ │ │ └── subdir │ │ │ └── file6 │ ├── custom-generator │ │ ├── gyptest-custom-generator.py │ │ ├── mygenerator.py │ │ └── test.gyp │ ├── cxxflags │ │ ├── cxxflags.cc │ │ ├── cxxflags.gyp │ │ └── gyptest-cxxflags.py │ ├── defines-escaping │ │ ├── defines-escaping.c │ │ ├── defines-escaping.gyp │ │ └── gyptest-defines-escaping.py │ ├── defines │ │ ├── defines-env.gyp │ │ ├── defines.c │ │ ├── defines.gyp │ │ ├── gyptest-define-override.py │ │ ├── gyptest-defines-env-regyp.py │ │ ├── gyptest-defines-env.py │ │ └── gyptest-defines.py │ ├── dependencies │ │ ├── a.c │ │ ├── b │ │ │ ├── b.c │ │ │ ├── b.gyp │ │ │ └── b3.c │ │ ├── c │ │ │ ├── c.c │ │ │ ├── c.gyp │ │ │ └── d.c │ │ ├── double_dependency.gyp │ │ ├── double_dependent.gyp │ │ ├── extra_targets.gyp │ │ ├── gyptest-double-dependency.py │ │ ├── gyptest-extra-targets.py │ │ ├── gyptest-lib-only.py │ │ ├── gyptest-none-traversal.py │ │ ├── gyptest-sharedlib-linksettings.py │ │ ├── lib_only.gyp │ │ ├── main.c │ │ ├── none_traversal.gyp │ │ └── sharedlib-linksettings │ │ │ ├── program.c │ │ │ ├── sharedlib.c │ │ │ ├── staticlib.c │ │ │ └── test.gyp │ ├── dependency-copy │ │ ├── gyptest-copy.py │ │ └── src │ │ │ ├── copies.gyp │ │ │ ├── file1.c │ │ │ └── file2.c │ ├── empty-target │ │ ├── empty-target.gyp │ │ └── gyptest-empty-target.py │ ├── errors │ │ ├── dependency_cycle.gyp │ │ ├── duplicate_node.gyp │ │ ├── duplicate_rule.gyp │ │ ├── duplicate_targets.gyp │ │ ├── file_cycle0.gyp │ │ ├── file_cycle1.gyp │ │ ├── gyptest-errors.py │ │ ├── missing_dep.gyp │ │ └── missing_targets.gyp │ ├── escaping │ │ ├── colon │ │ │ └── test.gyp │ │ └── gyptest-colon.py │ ├── exclusion │ │ ├── exclusion.gyp │ │ ├── gyptest-exclusion.py │ │ └── hello.c │ ├── external-cross-compile │ │ ├── gyptest-cross.py │ │ └── src │ │ │ ├── bogus1.cc │ │ │ ├── bogus2.c │ │ │ ├── cross.gyp │ │ │ ├── cross_compile.gypi │ │ │ ├── fake_cross.py │ │ │ ├── program.cc │ │ │ ├── test1.cc │ │ │ ├── test2.c │ │ │ ├── test3.cc │ │ │ ├── test4.c │ │ │ └── tochar.py │ ├── generator-output │ │ ├── actions │ │ │ ├── actions.gyp │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ ├── subdir1 │ │ │ │ ├── actions-out │ │ │ │ │ └── README.txt │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ ├── executable.gyp │ │ │ │ ├── make-prog1.py │ │ │ │ ├── make-prog2.py │ │ │ │ └── program.c │ │ │ └── subdir2 │ │ │ │ ├── actions-out │ │ │ │ └── README.txt │ │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ │ ├── make-file.py │ │ │ │ └── none.gyp │ │ ├── copies │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ ├── copies-out │ │ │ │ └── README.txt │ │ │ ├── copies.gyp │ │ │ ├── file1 │ │ │ ├── file2 │ │ │ └── subdir │ │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ │ ├── copies-out │ │ │ │ └── README.txt │ │ │ │ ├── file3 │ │ │ │ ├── file4 │ │ │ │ └── subdir.gyp │ │ ├── gyptest-actions.py │ │ ├── gyptest-copies.py │ │ ├── gyptest-depth.py │ │ ├── gyptest-mac-bundle.py │ │ ├── gyptest-relocate.py │ │ ├── gyptest-rules.py │ │ ├── gyptest-subdir2-deep.py │ │ ├── gyptest-symlink.py │ │ ├── gyptest-top-all.py │ │ ├── mac-bundle │ │ │ ├── Info.plist │ │ │ ├── app.order │ │ │ ├── header.h │ │ │ ├── main.c │ │ │ ├── resource.sb │ │ │ └── test.gyp │ │ ├── rules │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ ├── copy-file.py │ │ │ ├── rules.gyp │ │ │ ├── subdir1 │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ ├── define3.in0 │ │ │ │ ├── define4.in0 │ │ │ │ ├── executable.gyp │ │ │ │ ├── function1.in1 │ │ │ │ ├── function2.in1 │ │ │ │ └── program.c │ │ │ └── subdir2 │ │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ │ ├── file1.in0 │ │ │ │ ├── file2.in0 │ │ │ │ ├── file3.in1 │ │ │ │ ├── file4.in1 │ │ │ │ ├── none.gyp │ │ │ │ └── rules-out │ │ │ │ └── README.txt │ │ └── src │ │ │ ├── build │ │ │ └── README.txt │ │ │ ├── inc.h │ │ │ ├── inc1 │ │ │ └── include1.h │ │ │ ├── prog1.c │ │ │ ├── prog1.gyp │ │ │ ├── subdir2 │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ ├── deeper │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ ├── deeper.c │ │ │ │ ├── deeper.gyp │ │ │ │ └── deeper.h │ │ │ ├── inc2 │ │ │ │ └── include2.h │ │ │ ├── prog2.c │ │ │ └── prog2.gyp │ │ │ ├── subdir3 │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ ├── inc3 │ │ │ │ └── include3.h │ │ │ ├── prog3.c │ │ │ └── prog3.gyp │ │ │ └── symroot.gypi │ ├── gyp-defines │ │ ├── defines.gyp │ │ ├── echo.py │ │ ├── gyptest-multiple-values.py │ │ └── gyptest-regyp.py │ ├── hard_dependency │ │ ├── gyptest-exported-hard-dependency.py │ │ ├── gyptest-no-exported-hard-dependency.py │ │ └── src │ │ │ ├── a.c │ │ │ ├── a.h │ │ │ ├── b.c │ │ │ ├── b.h │ │ │ ├── c.c │ │ │ ├── c.h │ │ │ ├── d.c │ │ │ ├── emit.py │ │ │ └── hard_dependency.gyp │ ├── hello │ │ ├── gyptest-all.py │ │ ├── gyptest-default.py │ │ ├── gyptest-disable-regyp.py │ │ ├── gyptest-regyp-output.py │ │ ├── gyptest-regyp.py │ │ ├── gyptest-target.py │ │ ├── hello.c │ │ ├── hello.gyp │ │ ├── hello2.c │ │ └── hello2.gyp │ ├── home_dot_gyp │ │ ├── gyptest-home-includes-config-arg.py │ │ ├── gyptest-home-includes-config-env.py │ │ ├── gyptest-home-includes-regyp.py │ │ ├── gyptest-home-includes.py │ │ ├── home │ │ │ └── .gyp │ │ │ │ └── include.gypi │ │ ├── home2 │ │ │ ├── .gyp │ │ │ │ └── include.gypi │ │ │ └── .gyp_new │ │ │ │ └── include.gypi │ │ └── src │ │ │ ├── all.gyp │ │ │ └── printfoo.c │ ├── include_dirs │ │ ├── gyptest-all.py │ │ ├── gyptest-default.py │ │ └── src │ │ │ ├── inc.h │ │ │ ├── inc1 │ │ │ └── include1.h │ │ │ ├── includes.c │ │ │ ├── includes.gyp │ │ │ ├── shadow1 │ │ │ └── shadow.h │ │ │ ├── shadow2 │ │ │ └── shadow.h │ │ │ └── subdir │ │ │ ├── inc.h │ │ │ ├── inc2 │ │ │ └── include2.h │ │ │ ├── subdir_includes.c │ │ │ └── subdir_includes.gyp │ ├── intermediate_dir │ │ ├── gyptest-intermediate-dir.py │ │ └── src │ │ │ ├── script.py │ │ │ ├── shared_infile.txt │ │ │ ├── test.gyp │ │ │ └── test2.gyp │ ├── ios │ │ ├── app-bundle │ │ │ ├── TestApp │ │ │ │ ├── English.lproj │ │ │ │ │ ├── InfoPlist-error.strings │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── MainMenu.xib │ │ │ │ │ └── Main_iPhone.storyboard │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── image.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── super_sylvain.png │ │ │ │ │ │ ├── super_sylvain@2x.png │ │ │ │ │ │ └── super_sylvain@3x.png │ │ │ │ ├── TestApp-Info.plist │ │ │ │ ├── check_no_signature.py │ │ │ │ ├── main.m │ │ │ │ ├── only-compile-in-32-bits.m │ │ │ │ └── only-compile-in-64-bits.m │ │ │ ├── test-archs.gyp │ │ │ ├── test-assets-catalog.gyp │ │ │ ├── test-crosscompile.gyp │ │ │ ├── test-device.gyp │ │ │ ├── test.gyp │ │ │ └── tool_main.cc │ │ ├── deployment-target │ │ │ ├── check-version-min.c │ │ │ └── deployment-target.gyp │ │ ├── extension │ │ │ ├── ActionExtension │ │ │ │ ├── ActionViewController.h │ │ │ │ ├── ActionViewController.m │ │ │ │ ├── Info.plist │ │ │ │ └── MainInterface.storyboard │ │ │ ├── ExtensionContainer │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Base.lproj │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ └── main.m │ │ │ └── extension.gyp │ │ ├── gyptest-app-ios-assets-catalog.py │ │ ├── gyptest-app-ios.py │ │ ├── gyptest-archs.py │ │ ├── gyptest-crosscompile.py │ │ ├── gyptest-deployment-target.py │ │ ├── gyptest-extension.py │ │ ├── gyptest-per-config-settings.py │ │ ├── gyptest-watch.py │ │ ├── gyptest-xcode-ninja.py │ │ └── watch │ │ │ ├── WatchApp │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── Interface.storyboard │ │ │ ├── WatchContainer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ │ ├── WatchKitExtension │ │ │ ├── Images.xcassets │ │ │ │ └── MyImage.imageset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── InterfaceController.h │ │ │ ├── InterfaceController.m │ │ │ └── MainInterface.storyboard │ │ │ └── watch.gyp │ ├── lib │ │ ├── README.txt │ │ ├── TestCmd.py │ │ ├── TestCommon.py │ │ ├── TestGyp.py │ │ ├── TestMac.py │ │ └── TestWin.py │ ├── library │ │ ├── gyptest-shared-obj-install-path.py │ │ ├── gyptest-shared.py │ │ ├── gyptest-static.py │ │ └── src │ │ │ ├── lib1.c │ │ │ ├── lib1_moveable.c │ │ │ ├── lib2.c │ │ │ ├── lib2_moveable.c │ │ │ ├── library.gyp │ │ │ ├── program.c │ │ │ └── shared_dependency.gyp │ ├── library_dirs │ │ ├── gyptest-library-dirs.py │ │ └── subdir │ │ │ ├── README.txt │ │ │ ├── hello.cc │ │ │ ├── mylib.cc │ │ │ ├── mylib.h │ │ │ ├── test-win.gyp │ │ │ └── test.gyp │ ├── link-dependency │ │ ├── gyptest-link-dependency.py │ │ ├── main.c │ │ ├── mymalloc.c │ │ └── test.gyp │ ├── link-objects │ │ ├── base.c │ │ ├── extra.c │ │ ├── gyptest-all.py │ │ └── link-objects.gyp │ ├── linux │ │ ├── gyptest-implicit-rpath.py │ │ └── implicit-rpath │ │ │ ├── file.c │ │ │ ├── main.c │ │ │ └── test.gyp │ ├── mac │ │ ├── action-envvars │ │ │ └── action │ │ │ │ ├── action.gyp │ │ │ │ └── action.sh │ │ ├── app-bundle │ │ │ ├── TestApp │ │ │ │ ├── English.lproj │ │ │ │ │ ├── InfoPlist-error.strings │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── MainMenu.xib │ │ │ │ │ ├── utf-16be.strings │ │ │ │ │ └── utf-16le.strings │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── image.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── super_sylvain.png │ │ │ │ │ │ ├── super_sylvain@2x.png │ │ │ │ │ │ └── super_sylvain@3x.png │ │ │ │ ├── TestApp-Info.plist │ │ │ │ ├── TestAppAppDelegate.h │ │ │ │ ├── TestAppAppDelegate.m │ │ │ │ └── main.m │ │ │ ├── empty.c │ │ │ ├── test-assets-catalog.gyp │ │ │ ├── test-error.gyp │ │ │ └── test.gyp │ │ ├── archs │ │ │ ├── empty_main.cc │ │ │ ├── file.mm │ │ │ ├── file_a.cc │ │ │ ├── file_a.h │ │ │ ├── file_b.cc │ │ │ ├── file_b.h │ │ │ ├── file_c.cc │ │ │ ├── file_d.cc │ │ │ ├── header.h │ │ │ ├── my_file.cc │ │ │ ├── my_main_file.cc │ │ │ ├── test-archs-multiarch.gyp │ │ │ ├── test-archs-x86_64.gyp │ │ │ ├── test-dependencies.gyp │ │ │ ├── test-no-archs.gyp │ │ │ └── test-valid-archs.gyp │ │ ├── bundle-resources │ │ │ ├── change.sh │ │ │ ├── executable-file.sh │ │ │ ├── secret.txt │ │ │ └── test.gyp │ │ ├── cflags │ │ │ ├── ccfile.cc │ │ │ ├── ccfile_withcflags.cc │ │ │ ├── cfile.c │ │ │ ├── cppfile.cpp │ │ │ ├── cppfile_withcflags.cpp │ │ │ ├── cxxfile.cxx │ │ │ ├── cxxfile_withcflags.cxx │ │ │ ├── mfile.m │ │ │ ├── mmfile.mm │ │ │ ├── mmfile_withcflags.mm │ │ │ └── test.gyp │ │ ├── clang-cxx-language-standard │ │ │ ├── c++11.cc │ │ │ ├── c++98.cc │ │ │ └── clang-cxx-language-standard.gyp │ │ ├── clang-cxx-library │ │ │ ├── clang-cxx-library.gyp │ │ │ ├── libc++.cc │ │ │ └── libstdc++.cc │ │ ├── copy-dylib │ │ │ ├── empty.c │ │ │ └── test.gyp │ │ ├── debuginfo │ │ │ ├── file.c │ │ │ └── test.gyp │ │ ├── depend-on-bundle │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── bundle.c │ │ │ ├── executable.c │ │ │ └── test.gyp │ │ ├── deployment-target │ │ │ ├── check-version-min.c │ │ │ └── deployment-target.gyp │ │ ├── framework-dirs │ │ │ ├── calculate.c │ │ │ └── framework-dirs.gyp │ │ ├── framework-headers │ │ │ ├── myframework.h │ │ │ ├── myframework.m │ │ │ └── test.gyp │ │ ├── framework │ │ │ ├── TestFramework │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── ObjCVector.h │ │ │ │ ├── ObjCVector.mm │ │ │ │ ├── ObjCVectorInternal.h │ │ │ │ └── TestFramework_Prefix.pch │ │ │ ├── empty.c │ │ │ └── framework.gyp │ │ ├── global-settings │ │ │ └── src │ │ │ │ ├── dir1 │ │ │ │ └── dir1.gyp │ │ │ │ └── dir2 │ │ │ │ ├── dir2.gyp │ │ │ │ └── file.txt │ │ ├── gyptest-action-envvars.py │ │ ├── gyptest-app-assets-catalog.py │ │ ├── gyptest-app-error.py │ │ ├── gyptest-app.py │ │ ├── gyptest-archs.py │ │ ├── gyptest-bundle-resources.py │ │ ├── gyptest-cflags.py │ │ ├── gyptest-clang-cxx-language-standard.py │ │ ├── gyptest-clang-cxx-library.py │ │ ├── gyptest-copies.py │ │ ├── gyptest-copy-dylib.py │ │ ├── gyptest-debuginfo.py │ │ ├── gyptest-depend-on-bundle.py │ │ ├── gyptest-deployment-target.py │ │ ├── gyptest-framework-dirs.py │ │ ├── gyptest-framework-headers.py │ │ ├── gyptest-framework.py │ │ ├── gyptest-global-settings.py │ │ ├── gyptest-identical-name.py │ │ ├── gyptest-infoplist-process.py │ │ ├── gyptest-installname.py │ │ ├── gyptest-ldflags-passed-to-libtool.py │ │ ├── gyptest-ldflags.py │ │ ├── gyptest-libraries.py │ │ ├── gyptest-libtool-zero.py │ │ ├── gyptest-loadable-module-bundle-product-extension.py │ │ ├── gyptest-loadable-module.py │ │ ├── gyptest-lto.py │ │ ├── gyptest-missing-cfbundlesignature.py │ │ ├── gyptest-non-strs-flattened-to-env.py │ │ ├── gyptest-objc-arc.py │ │ ├── gyptest-objc-gc.py │ │ ├── gyptest-postbuild-copy-bundle.py │ │ ├── gyptest-postbuild-defaults.py │ │ ├── gyptest-postbuild-fail.py │ │ ├── gyptest-postbuild-multiple-configurations.py │ │ ├── gyptest-postbuild-static-library.py │ │ ├── gyptest-postbuild.py │ │ ├── gyptest-prefixheader.py │ │ ├── gyptest-rebuild.py │ │ ├── gyptest-rpath.py │ │ ├── gyptest-sdkroot.py │ │ ├── gyptest-sourceless-module.py │ │ ├── gyptest-strip-default.py │ │ ├── gyptest-strip.py │ │ ├── gyptest-swift-library.py │ │ ├── gyptest-type-envvars.py │ │ ├── gyptest-unicode-settings.py │ │ ├── gyptest-xcode-env-order.py │ │ ├── gyptest-xcode-gcc-clang.py │ │ ├── gyptest-xcode-gcc.py │ │ ├── gyptest-xcode-support-actions.py │ │ ├── gyptest-xctest.py │ │ ├── identical-name │ │ │ ├── proxy │ │ │ │ ├── proxy.cc │ │ │ │ ├── proxy.gyp │ │ │ │ └── testlib │ │ │ │ │ ├── testlib.cc │ │ │ │ │ └── testlib.gyp │ │ │ ├── test-should-fail.gyp │ │ │ ├── test.gyp │ │ │ ├── test.gypi │ │ │ └── testlib │ │ │ │ ├── main.cc │ │ │ │ ├── testlib.gyp │ │ │ │ └── void.cc │ │ ├── infoplist-process │ │ │ ├── Info.plist │ │ │ ├── main.c │ │ │ ├── test1.gyp │ │ │ ├── test2.gyp │ │ │ └── test3.gyp │ │ ├── installname │ │ │ ├── Info.plist │ │ │ ├── file.c │ │ │ ├── main.c │ │ │ └── test.gyp │ │ ├── ldflags-libtool │ │ │ ├── file.c │ │ │ └── test.gyp │ │ ├── ldflags │ │ │ └── subdirectory │ │ │ │ ├── Info.plist │ │ │ │ ├── file.c │ │ │ │ ├── symbol_list.def │ │ │ │ └── test.gyp │ │ ├── libraries │ │ │ └── subdir │ │ │ │ ├── README.txt │ │ │ │ ├── hello.cc │ │ │ │ ├── mylib.c │ │ │ │ └── test.gyp │ │ ├── libtool-zero │ │ │ ├── mylib.c │ │ │ └── test.gyp │ │ ├── loadable-module-bundle-product-extension │ │ │ ├── src.cc │ │ │ └── test.gyp │ │ ├── loadable-module │ │ │ ├── Info.plist │ │ │ ├── module.c │ │ │ └── test.gyp │ │ ├── lto │ │ │ ├── asmfile.S │ │ │ ├── ccfile.cc │ │ │ ├── cfile.c │ │ │ ├── mfile.m │ │ │ ├── mmfile.mm │ │ │ └── test.gyp │ │ ├── missing-cfbundlesignature │ │ │ ├── Info.plist │ │ │ ├── Other-Info.plist │ │ │ ├── Third-Info.plist │ │ │ ├── file.c │ │ │ └── test.gyp │ │ ├── non-strs-flattened-to-env │ │ │ ├── Info.plist │ │ │ ├── main.c │ │ │ └── test.gyp │ │ ├── objc-arc │ │ │ ├── c-file.c │ │ │ ├── cc-file.cc │ │ │ ├── m-file-no-arc.m │ │ │ ├── m-file.m │ │ │ ├── mm-file-no-arc.mm │ │ │ ├── mm-file.mm │ │ │ └── test.gyp │ │ ├── objc-gc │ │ │ ├── c-file.c │ │ │ ├── cc-file.cc │ │ │ ├── main.m │ │ │ ├── needs-gc-mm.mm │ │ │ ├── needs-gc.m │ │ │ └── test.gyp │ │ ├── postbuild-copy-bundle │ │ │ ├── Framework-Info.plist │ │ │ ├── TestApp-Info.plist │ │ │ ├── copied.txt │ │ │ ├── empty.c │ │ │ ├── main.c │ │ │ ├── postbuild-copy-framework.sh │ │ │ ├── resource_file.sb │ │ │ └── test.gyp │ │ ├── postbuild-defaults │ │ │ ├── Info.plist │ │ │ ├── main.c │ │ │ ├── postbuild-defaults.sh │ │ │ └── test.gyp │ │ ├── postbuild-fail │ │ │ ├── file.c │ │ │ ├── postbuild-fail.sh │ │ │ ├── test.gyp │ │ │ ├── touch-dynamic.sh │ │ │ └── touch-static.sh │ │ ├── postbuild-multiple-configurations │ │ │ ├── main.c │ │ │ ├── postbuild-touch-file.sh │ │ │ └── test.gyp │ │ ├── postbuild-static-library │ │ │ ├── empty.c │ │ │ ├── postbuild-touch-file.sh │ │ │ └── test.gyp │ │ ├── postbuilds │ │ │ ├── copy.sh │ │ │ ├── file.c │ │ │ ├── file_g.c │ │ │ ├── file_h.c │ │ │ ├── script │ │ │ │ ├── shared_library_postbuild.sh │ │ │ │ └── static_library_postbuild.sh │ │ │ ├── subdirectory │ │ │ │ ├── copied_file.txt │ │ │ │ └── nested_target.gyp │ │ │ └── test.gyp │ │ ├── prefixheader │ │ │ ├── file.c │ │ │ ├── file.cc │ │ │ ├── file.m │ │ │ ├── file.mm │ │ │ ├── header.h │ │ │ └── test.gyp │ │ ├── rebuild │ │ │ ├── TestApp-Info.plist │ │ │ ├── delay-touch.sh │ │ │ ├── empty.c │ │ │ ├── main.c │ │ │ └── test.gyp │ │ ├── rpath │ │ │ ├── file.c │ │ │ ├── main.c │ │ │ └── test.gyp │ │ ├── sdkroot │ │ │ ├── file.cc │ │ │ ├── test.gyp │ │ │ └── test_shorthand.sh │ │ ├── sourceless-module │ │ │ ├── empty.c │ │ │ ├── empty.txt │ │ │ ├── fun.c │ │ │ └── test.gyp │ │ ├── strip │ │ │ ├── file.c │ │ │ ├── main.c │ │ │ ├── strip.saves │ │ │ ├── subdirectory │ │ │ │ ├── nested_file.c │ │ │ │ ├── nested_strip.saves │ │ │ │ ├── subdirectory.gyp │ │ │ │ └── test_reading_save_file_from_postbuild.sh │ │ │ ├── test-defaults.gyp │ │ │ └── test.gyp │ │ ├── swift-library │ │ │ ├── Info.plist │ │ │ ├── file.swift │ │ │ └── test.gyp │ │ ├── type_envvars │ │ │ ├── file.c │ │ │ ├── test.gyp │ │ │ ├── test_bundle_executable.sh │ │ │ ├── test_bundle_loadable_module.sh │ │ │ ├── test_bundle_shared_library.sh │ │ │ ├── test_check_sdkroot.sh │ │ │ ├── test_nonbundle_executable.sh │ │ │ ├── test_nonbundle_loadable_module.sh │ │ │ ├── test_nonbundle_none.sh │ │ │ ├── test_nonbundle_shared_library.sh │ │ │ └── test_nonbundle_static_library.sh │ │ ├── unicode-settings │ │ │ ├── file.cc │ │ │ ├── test.gyp │ │ │ └── test_bundle_display_name.sh │ │ ├── xcode-env-order │ │ │ ├── Info.plist │ │ │ ├── file.ext1 │ │ │ ├── file.ext2 │ │ │ ├── file.ext3 │ │ │ ├── main.c │ │ │ └── test.gyp │ │ ├── xcode-gcc │ │ │ ├── aliasing.cc │ │ │ ├── test-clang.gyp │ │ │ ├── test.gyp │ │ │ ├── valid_c.c │ │ │ ├── valid_cc.cc │ │ │ ├── valid_m.m │ │ │ ├── valid_mm.mm │ │ │ ├── warn_about_invalid_offsetof_macro.cc │ │ │ └── warn_about_missing_newline.c │ │ ├── xcode-support-actions │ │ │ ├── source.c │ │ │ └── test.gyp │ │ └── xctest │ │ │ ├── MyClass.h │ │ │ ├── MyClass.m │ │ │ ├── TestCase.m │ │ │ ├── resource.txt │ │ │ ├── test.gyp │ │ │ └── test.xcodeproj │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── classes.xcscheme │ ├── make │ │ ├── dependencies.gyp │ │ ├── gyptest-dependencies.py │ │ ├── gyptest-noload.py │ │ ├── main.cc │ │ ├── main.h │ │ └── noload │ │ │ ├── all.gyp │ │ │ ├── lib │ │ │ ├── shared.c │ │ │ ├── shared.gyp │ │ │ └── shared.h │ │ │ └── main.c │ ├── make_global_settings │ │ ├── ar │ │ │ ├── gyptest-make_global_settings_ar.py │ │ │ └── make_global_settings_ar.gyp │ │ ├── basics │ │ │ ├── gyptest-make_global_settings.py │ │ │ └── make_global_settings.gyp │ │ ├── env-wrapper │ │ │ ├── gyptest-wrapper.py │ │ │ └── wrapper.gyp │ │ ├── full-toolchain │ │ │ ├── bar.cc │ │ │ ├── foo.c │ │ │ ├── gyptest-make_global_settings.py │ │ │ ├── make_global_settings.gyp │ │ │ ├── my_nm.py │ │ │ └── my_readelf.py │ │ ├── ld │ │ │ ├── gyptest-make_global_settings_ld.py │ │ │ └── make_global_settings_ld.gyp │ │ └── wrapper │ │ │ ├── gyptest-wrapper.py │ │ │ └── wrapper.gyp │ ├── many-actions │ │ ├── file0 │ │ ├── file1 │ │ ├── file2 │ │ ├── file3 │ │ ├── file4 │ │ ├── gyptest-many-actions-unsorted.py │ │ ├── gyptest-many-actions.py │ │ ├── many-actions-unsorted.gyp │ │ └── many-actions.gyp │ ├── module │ │ ├── gyptest-default.py │ │ └── src │ │ │ ├── lib1.c │ │ │ ├── lib2.c │ │ │ ├── module.gyp │ │ │ └── program.c │ ├── msvs │ │ ├── buildevents │ │ │ ├── buildevents.gyp │ │ │ ├── gyptest-msbuild-supports-prepostbuild.py │ │ │ ├── gyptest-ninja-warnings.py │ │ │ └── main.cc │ │ ├── config_attrs │ │ │ ├── gyptest-config_attrs.py │ │ │ ├── hello.c │ │ │ └── hello.gyp │ │ ├── express │ │ │ ├── base │ │ │ │ └── base.gyp │ │ │ ├── express.gyp │ │ │ └── gyptest-express.py │ │ ├── external_builder │ │ │ ├── external.gyp │ │ │ ├── external_builder.py │ │ │ ├── gyptest-all.py │ │ │ ├── hello.cpp │ │ │ ├── hello.z │ │ │ ├── msbuild_action.py │ │ │ └── msbuild_rule.py │ │ ├── filters │ │ │ ├── filters.gyp │ │ │ ├── gyptest-filters-2008.py │ │ │ └── gyptest-filters-2010.py │ │ ├── list_excluded │ │ │ ├── gyptest-all.py │ │ │ ├── hello.cpp │ │ │ ├── hello_exclude.gyp │ │ │ └── hello_mac.cpp │ │ ├── missing_sources │ │ │ ├── gyptest-missing.py │ │ │ └── hello_missing.gyp │ │ ├── multiple_actions_error_handling │ │ │ ├── action_fail.py │ │ │ ├── action_succeed.py │ │ │ ├── actions.gyp │ │ │ └── gyptest.py │ │ ├── props │ │ │ ├── AppName.props │ │ │ ├── AppName.vsprops │ │ │ ├── gyptest-props.py │ │ │ ├── hello.c │ │ │ └── hello.gyp │ │ ├── shared_output │ │ │ ├── common.gypi │ │ │ ├── gyptest-shared_output.py │ │ │ ├── hello.c │ │ │ ├── hello.gyp │ │ │ └── there │ │ │ │ ├── there.c │ │ │ │ └── there.gyp │ │ └── uldi2010 │ │ │ ├── gyptest-all.py │ │ │ ├── hello.c │ │ │ ├── hello.gyp │ │ │ └── hello2.c │ ├── multiple-targets │ │ ├── gyptest-all.py │ │ ├── gyptest-default.py │ │ └── src │ │ │ ├── common.c │ │ │ ├── multiple.gyp │ │ │ ├── prog1.c │ │ │ └── prog2.c │ ├── ninja │ │ ├── action-rule-hash │ │ │ ├── gyptest-action-rule-hash.py │ │ │ └── subdir │ │ │ │ ├── action-rule-hash.gyp │ │ │ │ └── emit.py │ │ ├── action_dependencies │ │ │ ├── gyptest-action-dependencies.py │ │ │ └── src │ │ │ │ ├── a.c │ │ │ │ ├── a.h │ │ │ │ ├── action_dependencies.gyp │ │ │ │ ├── b.c │ │ │ │ ├── b.h │ │ │ │ ├── c.c │ │ │ │ ├── c.h │ │ │ │ └── emit.py │ │ ├── chained-dependency │ │ │ ├── chained-dependency.gyp │ │ │ ├── chained.c │ │ │ └── gyptest-chained-dependency.py │ │ ├── empty-and-non-empty-duplicate-name │ │ │ ├── gyptest-empty-and-non-empty-duplicate-name.py │ │ │ ├── subdir │ │ │ │ └── included.gyp │ │ │ └── test.gyp │ │ ├── normalize-paths-win │ │ │ ├── gyptest-normalize-paths.py │ │ │ ├── hello.cc │ │ │ └── normalize-paths.gyp │ │ ├── s-needs-no-depfiles │ │ │ ├── empty.s │ │ │ ├── gyptest-s-needs-no-depfiles.py │ │ │ └── s-needs-no-depfiles.gyp │ │ ├── solibs_avoid_relinking │ │ │ ├── gyptest-solibs-avoid-relinking.py │ │ │ ├── main.cc │ │ │ ├── solib.cc │ │ │ └── solibs_avoid_relinking.gyp │ │ ├── use-console │ │ │ ├── foo.bar │ │ │ ├── gyptest-use-console.py │ │ │ └── use-console.gyp │ │ └── use-custom-environment-files │ │ │ ├── gyptest-use-custom-environment-files.py │ │ │ ├── use-custom-environment-files.cc │ │ │ └── use-custom-environment-files.gyp │ ├── no-cpp │ │ ├── gyptest-no-cpp.py │ │ └── src │ │ │ ├── call-f-main.c │ │ │ ├── empty-main.c │ │ │ ├── f.cc │ │ │ └── test.gyp │ ├── no-output │ │ ├── gyptest-no-output.py │ │ └── src │ │ │ └── nooutput.gyp │ ├── product │ │ ├── gyptest-product.py │ │ ├── hello.c │ │ └── product.gyp │ ├── prune_targets │ │ ├── gyptest-prune-targets.py │ │ ├── lib1.cc │ │ ├── lib2.cc │ │ ├── lib3.cc │ │ ├── lib_indirect.cc │ │ ├── program.cc │ │ ├── test1.gyp │ │ └── test2.gyp │ ├── relative │ │ ├── foo │ │ │ ├── a │ │ │ │ ├── a.cc │ │ │ │ ├── a.gyp │ │ │ │ └── c │ │ │ │ │ ├── c.cc │ │ │ │ │ └── c.gyp │ │ │ └── b │ │ │ │ ├── b.cc │ │ │ │ └── b.gyp │ │ └── gyptest-default.py │ ├── rename │ │ ├── filecase │ │ │ ├── file.c │ │ │ ├── test-casesensitive.gyp │ │ │ └── test.gyp │ │ └── gyptest-filecase.py │ ├── restat │ │ ├── gyptest-restat.py │ │ └── src │ │ │ ├── create_intermediate.py │ │ │ ├── restat.gyp │ │ │ └── touch.py │ ├── rules-dirname │ │ ├── gyptest-dirname.py │ │ └── src │ │ │ ├── actions.gyp │ │ │ ├── copy-file.py │ │ │ └── subdir │ │ │ ├── a │ │ │ └── b │ │ │ │ ├── c.gencc │ │ │ │ └── c.printvars │ │ │ ├── foo │ │ │ └── bar │ │ │ │ ├── baz.gencc │ │ │ │ └── baz.printvars │ │ │ ├── input-rule-dirname.gyp │ │ │ ├── main.cc │ │ │ ├── nodir.gencc │ │ │ └── printvars.py │ ├── rules-rebuild │ │ ├── gyptest-all.py │ │ ├── gyptest-default.py │ │ └── src │ │ │ ├── main.c │ │ │ ├── make-sources.py │ │ │ ├── prog1.in │ │ │ ├── prog2.in │ │ │ └── same_target.gyp │ ├── rules-use-built-dependencies │ │ ├── gyptest-use-built-dependencies.py │ │ └── src │ │ │ ├── main.cc │ │ │ └── use-built-dependencies-rule.gyp │ ├── rules-variables │ │ ├── gyptest-rules-variables.py │ │ └── src │ │ │ ├── input_ext.c │ │ │ ├── input_name │ │ │ └── test.c │ │ │ ├── input_path │ │ │ └── subdir │ │ │ │ └── test.c │ │ │ ├── subdir │ │ │ ├── input_dirname.c │ │ │ └── test.c │ │ │ ├── test.input_root.c │ │ │ └── variables.gyp │ ├── rules │ │ ├── gyptest-all.py │ │ ├── gyptest-default.py │ │ ├── gyptest-input-root.py │ │ ├── gyptest-special-variables.py │ │ └── src │ │ │ ├── actions.gyp │ │ │ ├── an_asm.S │ │ │ ├── as.bat │ │ │ ├── copy-file.py │ │ │ ├── external │ │ │ ├── external.gyp │ │ │ ├── file1.in │ │ │ └── file2.in │ │ │ ├── input-root.gyp │ │ │ ├── noaction │ │ │ ├── file1.in │ │ │ └── no_action_with_rules_fails.gyp │ │ │ ├── rule.py │ │ │ ├── somefile.ext │ │ │ ├── special-variables.gyp │ │ │ ├── subdir1 │ │ │ ├── executable.gyp │ │ │ ├── function1.in │ │ │ ├── function2.in │ │ │ └── program.c │ │ │ ├── subdir2 │ │ │ ├── both_rule_and_action_input.gyp │ │ │ ├── file1.in │ │ │ ├── file2.in │ │ │ ├── never_used.gyp │ │ │ ├── no_action.gyp │ │ │ ├── no_inputs.gyp │ │ │ ├── none.gyp │ │ │ └── program.c │ │ │ ├── subdir3 │ │ │ ├── executable2.gyp │ │ │ ├── function3.in │ │ │ └── program.c │ │ │ └── subdir4 │ │ │ ├── asm-function.assem │ │ │ ├── build-asm.gyp │ │ │ └── program.c │ ├── same-gyp-name │ │ ├── gyptest-all.py │ │ ├── gyptest-default.py │ │ ├── gyptest-library.py │ │ ├── library │ │ │ ├── one │ │ │ │ └── sub.gyp │ │ │ ├── test.gyp │ │ │ └── two │ │ │ │ └── sub.gyp │ │ └── src │ │ │ ├── all.gyp │ │ │ ├── subdir1 │ │ │ ├── executable.gyp │ │ │ └── main1.cc │ │ │ └── subdir2 │ │ │ ├── executable.gyp │ │ │ └── main2.cc │ ├── same-rule-output-file-name │ │ ├── gyptest-all.py │ │ └── src │ │ │ ├── subdir1 │ │ │ └── subdir1.gyp │ │ │ ├── subdir2 │ │ │ └── subdir2.gyp │ │ │ ├── subdirs.gyp │ │ │ └── touch.py │ ├── same-source-file-name │ │ ├── gyptest-all.py │ │ ├── gyptest-default.py │ │ ├── gyptest-pass-executable.py │ │ ├── gyptest-shared.py │ │ ├── gyptest-static.py │ │ └── src │ │ │ ├── all.gyp │ │ │ ├── double-executable.gyp │ │ │ ├── double-shared.gyp │ │ │ ├── double-static.gyp │ │ │ ├── func.c │ │ │ ├── prog1.c │ │ │ ├── prog2.c │ │ │ ├── prog3.c │ │ │ ├── subdir1 │ │ │ └── func.c │ │ │ └── subdir2 │ │ │ └── func.c │ ├── same-target-name-different-directory │ │ ├── gyptest-all.py │ │ └── src │ │ │ ├── subdir1 │ │ │ └── subdir1.gyp │ │ │ ├── subdir2 │ │ │ └── subdir2.gyp │ │ │ ├── subdirs.gyp │ │ │ └── touch.py │ ├── same-target-name │ │ ├── gyptest-same-target-name.py │ │ └── src │ │ │ ├── all.gyp │ │ │ ├── executable1.gyp │ │ │ └── executable2.gyp │ ├── sanitize-rule-names │ │ ├── blah.S │ │ ├── gyptest-sanitize-rule-names.py │ │ ├── hello.cc │ │ ├── sanitize-rule-names.gyp │ │ └── script.py │ ├── self-dependency │ │ ├── common.gypi │ │ ├── dep.gyp │ │ ├── gyptest-self-dependency.py │ │ └── self_dependency.gyp │ ├── sibling │ │ ├── gyptest-all.py │ │ ├── gyptest-relocate.py │ │ └── src │ │ │ ├── build │ │ │ └── all.gyp │ │ │ ├── prog1 │ │ │ ├── prog1.c │ │ │ └── prog1.gyp │ │ │ └── prog2 │ │ │ ├── prog2.c │ │ │ └── prog2.gyp │ ├── small │ │ └── gyptest-small.py │ ├── standalone-static-library │ │ ├── gyptest-standalone-static-library.py │ │ ├── invalid.gyp │ │ ├── mylib.c │ │ ├── mylib.gyp │ │ └── prog.c │ ├── standalone │ │ ├── gyptest-standalone.py │ │ └── standalone.gyp │ ├── subdirectory │ │ ├── gyptest-SYMROOT-all.py │ │ ├── gyptest-SYMROOT-default.py │ │ ├── gyptest-subdir-all.py │ │ ├── gyptest-subdir-default.py │ │ ├── gyptest-subdir2-deep.py │ │ ├── gyptest-top-all.py │ │ ├── gyptest-top-default.py │ │ └── src │ │ │ ├── prog1.c │ │ │ ├── prog1.gyp │ │ │ ├── subdir │ │ │ ├── prog2.c │ │ │ ├── prog2.gyp │ │ │ └── subdir2 │ │ │ │ ├── prog3.c │ │ │ │ └── prog3.gyp │ │ │ └── symroot.gypi │ ├── target │ │ ├── gyptest-target.py │ │ ├── hello.c │ │ └── target.gyp │ ├── toolsets │ │ ├── gyptest-toolsets.py │ │ ├── main.cc │ │ ├── toolsets.cc │ │ ├── toolsets.gyp │ │ └── toolsets_shared.cc │ ├── toplevel-dir │ │ ├── gyptest-toplevel-dir.py │ │ └── src │ │ │ ├── sub1 │ │ │ ├── main.gyp │ │ │ └── prog1.c │ │ │ └── sub2 │ │ │ ├── prog2.c │ │ │ └── prog2.gyp │ ├── variables │ │ ├── commands │ │ │ ├── commands-repeated.gyp │ │ │ ├── commands-repeated.gyp.stdout │ │ │ ├── commands-repeated.gypd.golden │ │ │ ├── commands.gyp │ │ │ ├── commands.gyp.ignore-env.stdout │ │ │ ├── commands.gyp.stdout │ │ │ ├── commands.gypd.golden │ │ │ ├── commands.gypi │ │ │ ├── gyptest-commands-ignore-env.py │ │ │ ├── gyptest-commands-repeated-multidir.py │ │ │ ├── gyptest-commands-repeated.py │ │ │ ├── gyptest-commands.py │ │ │ ├── repeated_multidir │ │ │ │ ├── dir_1 │ │ │ │ │ └── test_1.gyp │ │ │ │ ├── dir_2 │ │ │ │ │ └── test_2.gyp │ │ │ │ ├── main.gyp │ │ │ │ ├── print_cwd_basename.py │ │ │ │ └── repeated_command_common.gypi │ │ │ ├── test.py │ │ │ └── update_golden │ │ ├── filelist │ │ │ ├── filelist.gyp.stdout │ │ │ ├── filelist.gypd.golden │ │ │ ├── gyptest-filelist-golden.py │ │ │ ├── gyptest-filelist.py │ │ │ ├── src │ │ │ │ ├── dummy.py │ │ │ │ ├── filelist.gyp │ │ │ │ └── filelist2.gyp │ │ │ └── update_golden │ │ ├── latelate │ │ │ ├── gyptest-latelate.py │ │ │ └── src │ │ │ │ ├── latelate.gyp │ │ │ │ └── program.cc │ │ └── variable-in-path │ │ │ ├── C1 │ │ │ └── hello.cc │ │ │ ├── gyptest-variable-in-path.py │ │ │ └── variable-in-path.gyp │ └── win │ │ ├── asm-files │ │ ├── asm-files.gyp │ │ ├── b.s │ │ ├── c.S │ │ └── hello.cc │ │ ├── batch-file-action │ │ ├── batch-file-action.gyp │ │ ├── infile │ │ └── somecmd.bat │ │ ├── command-quote │ │ ├── a.S │ │ ├── bat with spaces.bat │ │ ├── command-quote.gyp │ │ ├── go.bat │ │ └── subdir │ │ │ └── and │ │ │ └── another │ │ │ └── in-subdir.gyp │ │ ├── compiler-flags │ │ ├── additional-include-dirs.cc │ │ ├── additional-include-dirs.gyp │ │ ├── additional-options.cc │ │ ├── additional-options.gyp │ │ ├── analysis.gyp │ │ ├── buffer-security-check.gyp │ │ ├── buffer-security.cc │ │ ├── calling-convention-cdecl.def │ │ ├── calling-convention-fastcall.def │ │ ├── calling-convention-stdcall.def │ │ ├── calling-convention-vectorcall.def │ │ ├── calling-convention.cc │ │ ├── calling-convention.gyp │ │ ├── character-set-mbcs.cc │ │ ├── character-set-unicode.cc │ │ ├── character-set.gyp │ │ ├── debug-format.gyp │ │ ├── default-char-is-unsigned.cc │ │ ├── default-char-is-unsigned.gyp │ │ ├── disable-specific-warnings.cc │ │ ├── disable-specific-warnings.gyp │ │ ├── enable-enhanced-instruction-set.cc │ │ ├── enable-enhanced-instruction-set.gyp │ │ ├── exception-handling-on.cc │ │ ├── exception-handling.gyp │ │ ├── floating-point-model-fast.cc │ │ ├── floating-point-model-precise.cc │ │ ├── floating-point-model-strict.cc │ │ ├── floating-point-model.gyp │ │ ├── force-include-files-with-precompiled.cc │ │ ├── force-include-files.cc │ │ ├── force-include-files.gyp │ │ ├── function-level-linking.cc │ │ ├── function-level-linking.gyp │ │ ├── hello.cc │ │ ├── optimizations.gyp │ │ ├── pdbname-override.gyp │ │ ├── pdbname.cc │ │ ├── pdbname.gyp │ │ ├── precomp.cc │ │ ├── rtti-on.cc │ │ ├── rtti.gyp │ │ ├── runtime-checks.cc │ │ ├── runtime-checks.gyp │ │ ├── runtime-library-md.cc │ │ ├── runtime-library-mdd.cc │ │ ├── runtime-library-mt.cc │ │ ├── runtime-library-mtd.cc │ │ ├── runtime-library.gyp │ │ ├── subdir │ │ │ └── header.h │ │ ├── treat-wchar-t-as-built-in-type.gyp │ │ ├── treat-wchar-t-as-built-in-type1.cc │ │ ├── treat-wchar-t-as-built-in-type2.cc │ │ ├── uninit.cc │ │ ├── warning-as-error.cc │ │ ├── warning-as-error.gyp │ │ ├── warning-level.gyp │ │ ├── warning-level1.cc │ │ ├── warning-level2.cc │ │ ├── warning-level3.cc │ │ └── warning-level4.cc │ │ ├── enable-winrt │ │ ├── dllmain.cc │ │ └── enable-winrt.gyp │ │ ├── generator-output-different-drive │ │ ├── gyptest-generator-output-different-drive.py │ │ ├── prog.c │ │ └── prog.gyp │ │ ├── gyptest-asm-files.py │ │ ├── gyptest-cl-additional-include-dirs.py │ │ ├── gyptest-cl-additional-options.py │ │ ├── gyptest-cl-analysis.py │ │ ├── gyptest-cl-buffer-security-check.py │ │ ├── gyptest-cl-calling-convention.py │ │ ├── gyptest-cl-character-set.py │ │ ├── gyptest-cl-debug-format.py │ │ ├── gyptest-cl-default-char-is-unsigned.py │ │ ├── gyptest-cl-disable-specific-warnings.py │ │ ├── gyptest-cl-enable-enhanced-instruction-set.py │ │ ├── gyptest-cl-exception-handling.py │ │ ├── gyptest-cl-floating-point-model.py │ │ ├── gyptest-cl-force-include-files.py │ │ ├── gyptest-cl-function-level-linking.py │ │ ├── gyptest-cl-optimizations.py │ │ ├── gyptest-cl-pdbname-override.py │ │ ├── gyptest-cl-pdbname.py │ │ ├── gyptest-cl-rtti.py │ │ ├── gyptest-cl-runtime-checks.py │ │ ├── gyptest-cl-runtime-library.py │ │ ├── gyptest-cl-treat-wchar-t-as-built-in-type.py │ │ ├── gyptest-cl-warning-as-error.py │ │ ├── gyptest-cl-warning-level.py │ │ ├── gyptest-command-quote.py │ │ ├── gyptest-lib-ltcg.py │ │ ├── gyptest-link-additional-deps.py │ │ ├── gyptest-link-additional-options.py │ │ ├── gyptest-link-aslr.py │ │ ├── gyptest-link-base-address.py │ │ ├── gyptest-link-debug-info.py │ │ ├── gyptest-link-default-libs.py │ │ ├── gyptest-link-deffile.py │ │ ├── gyptest-link-defrelink.py │ │ ├── gyptest-link-delay-load-dlls.py │ │ ├── gyptest-link-embed-manifest.py │ │ ├── gyptest-link-enable-uac.py │ │ ├── gyptest-link-enable-winrt.py │ │ ├── gyptest-link-entrypointsymbol.py │ │ ├── gyptest-link-fixed-base.py │ │ ├── gyptest-link-force-symbol-reference.py │ │ ├── gyptest-link-generate-manifest.py │ │ ├── gyptest-link-incremental.py │ │ ├── gyptest-link-large-address-aware.py │ │ ├── gyptest-link-large-pdb.py │ │ ├── gyptest-link-library-adjust.py │ │ ├── gyptest-link-library-directories.py │ │ ├── gyptest-link-ltcg.py │ │ ├── gyptest-link-mapfile.py │ │ ├── gyptest-link-nodefaultlib.py │ │ ├── gyptest-link-noimportlib.py │ │ ├── gyptest-link-nxcompat.py │ │ ├── gyptest-link-opt-icf.py │ │ ├── gyptest-link-opt-ref.py │ │ ├── gyptest-link-ordering.py │ │ ├── gyptest-link-outputfile.py │ │ ├── gyptest-link-pdb-no-output.py │ │ ├── gyptest-link-pdb-output.py │ │ ├── gyptest-link-pdb.py │ │ ├── gyptest-link-pgo.py │ │ ├── gyptest-link-profile.py │ │ ├── gyptest-link-restat-importlib.py │ │ ├── gyptest-link-safeseh.py │ │ ├── gyptest-link-shard.py │ │ ├── gyptest-link-subsystem.py │ │ ├── gyptest-link-target-machine.py │ │ ├── gyptest-link-tsaware.py │ │ ├── gyptest-link-uldi.py │ │ ├── gyptest-link-unsupported-manifest.py │ │ ├── gyptest-link-update-manifest.py │ │ ├── gyptest-link-warnings-as-errors.py │ │ ├── gyptest-long-command-line.py │ │ ├── gyptest-macro-projectname.py │ │ ├── gyptest-macro-targetext.py │ │ ├── gyptest-macro-targetfilename.py │ │ ├── gyptest-macro-targetname.py │ │ ├── gyptest-macro-targetpath.py │ │ ├── gyptest-macro-vcinstalldir.py │ │ ├── gyptest-macros-containing-gyp.py │ │ ├── gyptest-macros-in-inputs-and-outputs.py │ │ ├── gyptest-midl-excluded.py │ │ ├── gyptest-midl-includedirs.py │ │ ├── gyptest-midl-rules.py │ │ ├── gyptest-ml-safeseh.py │ │ ├── gyptest-quoting-commands.py │ │ ├── gyptest-rc-build.py │ │ ├── gyptest-system-include.py │ │ ├── idl-excluded │ │ ├── bad.idl │ │ ├── copy-file.py │ │ ├── idl-excluded.gyp │ │ └── program.cc │ │ ├── idl-includedirs │ │ ├── hello.cc │ │ ├── idl-includedirs.gyp │ │ └── subdir │ │ │ ├── bar.idl │ │ │ └── foo.idl │ │ ├── idl-rules │ │ ├── Window.idl │ │ ├── basic-idl.gyp │ │ ├── history_indexer.idl │ │ ├── history_indexer_user.cc │ │ └── idl_compiler.py │ │ ├── importlib │ │ ├── dll_no_exports.cc │ │ ├── has-exports.cc │ │ ├── hello.cc │ │ ├── importlib.gyp │ │ └── noimplib.gyp │ │ ├── large-pdb │ │ ├── dllmain.cc │ │ ├── large-pdb.gyp │ │ └── main.cc │ │ ├── lib-flags │ │ ├── answer.cc │ │ ├── answer.h │ │ └── ltcg.gyp │ │ ├── linker-flags │ │ ├── a │ │ │ ├── x.cc │ │ │ └── z.cc │ │ ├── additional-deps.cc │ │ ├── additional-deps.gyp │ │ ├── additional-options.gyp │ │ ├── aslr.gyp │ │ ├── b │ │ │ └── y.cc │ │ ├── base-address.gyp │ │ ├── debug-info.gyp │ │ ├── deffile-multiple.gyp │ │ ├── deffile.cc │ │ ├── deffile.def │ │ ├── deffile.gyp │ │ ├── delay-load-dlls.gyp │ │ ├── delay-load.cc │ │ ├── embed-manifest.gyp │ │ ├── enable-uac.gyp │ │ ├── entrypointsymbol.cc │ │ ├── entrypointsymbol.gyp │ │ ├── extra.manifest │ │ ├── extra2.manifest │ │ ├── fixed-base.gyp │ │ ├── force-symbol-reference.gyp │ │ ├── generate-manifest.gyp │ │ ├── hello.cc │ │ ├── incremental.gyp │ │ ├── inline_test.cc │ │ ├── inline_test.h │ │ ├── inline_test_main.cc │ │ ├── large-address-aware.gyp │ │ ├── library-adjust.cc │ │ ├── library-adjust.gyp │ │ ├── library-directories-define.cc │ │ ├── library-directories-reference.cc │ │ ├── library-directories.gyp │ │ ├── link-ordering.gyp │ │ ├── link-warning.cc │ │ ├── ltcg.gyp │ │ ├── main-crt.c │ │ ├── manifest-in-comment.cc │ │ ├── mapfile.cc │ │ ├── mapfile.gyp │ │ ├── no-default-libs.cc │ │ ├── no-default-libs.gyp │ │ ├── nodefaultlib.cc │ │ ├── nodefaultlib.gyp │ │ ├── nxcompat.gyp │ │ ├── opt-icf.cc │ │ ├── opt-icf.gyp │ │ ├── opt-ref.cc │ │ ├── opt-ref.gyp │ │ ├── outputfile.gyp │ │ ├── pdb-output.gyp │ │ ├── pgo.gyp │ │ ├── profile.gyp │ │ ├── program-database.gyp │ │ ├── safeseh.gyp │ │ ├── safeseh_hello.cc │ │ ├── safeseh_zero.asm │ │ ├── safeseh_zero64.asm │ │ ├── subdir │ │ │ └── library.gyp │ │ ├── subsystem-windows.cc │ │ ├── subsystem.gyp │ │ ├── target-machine.gyp │ │ ├── tsaware.gyp │ │ ├── unsupported-manifest.gyp │ │ ├── update_pgd.py │ │ ├── warn-as-error.gyp │ │ ├── x.cc │ │ ├── y.cc │ │ └── z.cc │ │ ├── long-command-line │ │ ├── function.cc │ │ ├── hello.cc │ │ └── long-command-line.gyp │ │ ├── ml-safeseh │ │ ├── a.asm │ │ ├── hello.cc │ │ └── ml-safeseh.gyp │ │ ├── precompiled │ │ ├── gyptest-all.py │ │ ├── hello.c │ │ ├── hello.gyp │ │ ├── hello2.c │ │ └── precomp.c │ │ ├── rc-build │ │ ├── Resource.h │ │ ├── hello.cpp │ │ ├── hello.gyp │ │ ├── hello.h │ │ ├── hello.ico │ │ ├── hello.rc │ │ ├── hello3.rc │ │ ├── small.ico │ │ ├── subdir │ │ │ ├── hello2.rc │ │ │ └── include.h │ │ └── targetver.h │ │ ├── shard │ │ ├── hello.cc │ │ ├── hello1.cc │ │ ├── hello2.cc │ │ ├── hello3.cc │ │ ├── hello4.cc │ │ ├── shard.gyp │ │ └── shard_ref.gyp │ │ ├── system-include │ │ ├── bar │ │ │ └── header.h │ │ ├── common │ │ │ └── commonheader.h │ │ ├── foo │ │ │ └── header.h │ │ ├── main.cc │ │ └── test.gyp │ │ ├── uldi │ │ ├── a.cc │ │ ├── b.cc │ │ ├── main.cc │ │ └── uldi.gyp │ │ ├── vs-macros │ │ ├── as.py │ │ ├── containing-gyp.gyp │ │ ├── do_stuff.py │ │ ├── hello.cc │ │ ├── input-output-macros.gyp │ │ ├── input.S │ │ ├── projectname.gyp │ │ ├── stuff.blah │ │ ├── targetext.gyp │ │ ├── targetfilename.gyp │ │ ├── targetname.gyp │ │ ├── targetpath.gyp │ │ ├── test_exists.py │ │ └── vcinstalldir.gyp │ │ └── win-tool │ │ ├── copies_readonly_files.gyp │ │ └── gyptest-win-tool-handles-readonly-files.py └── tools │ ├── README │ ├── Xcode │ ├── README │ └── Specifications │ │ ├── gyp.pbfilespec │ │ └── gyp.xclangspec │ ├── emacs │ ├── README │ ├── gyp-tests.el │ ├── gyp.el │ ├── run-unit-tests.sh │ └── testdata │ │ ├── media.gyp │ │ └── media.gyp.fontified │ ├── graphviz.py │ ├── pretty_gyp.py │ ├── pretty_sln.py │ └── pretty_vcproj.py ├── json11.gyp ├── json11 ├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── Makefile ├── README.md ├── json11.cpp ├── json11.hpp ├── json11.pc.in └── test.cpp ├── lmdb.gyp ├── lmdb └── libraries │ └── liblmdb │ ├── .gitignore │ ├── CHANGES │ ├── COPYRIGHT │ ├── Doxyfile │ ├── LICENSE │ ├── Makefile │ ├── intro.doc │ ├── lmdb.h │ ├── mdb.c │ ├── mdb_copy.1 │ ├── mdb_copy.c │ ├── mdb_dump.1 │ ├── mdb_dump.c │ ├── mdb_load.1 │ ├── mdb_load.c │ ├── mdb_stat.1 │ ├── mdb_stat.c │ ├── midl.c │ ├── midl.h │ ├── mtest.c │ ├── mtest2.c │ ├── mtest3.c │ ├── mtest4.c │ ├── mtest5.c │ ├── mtest6.c │ ├── sample-bdb.txt │ ├── sample-mdb.txt │ └── tooltag └── lmdbxx ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CREDITS ├── Doxyfile ├── INSTALL ├── Makefile ├── README ├── README.rst ├── TODO ├── UNLICENSE ├── VERSION ├── check.cc ├── etc ├── archlinux │ └── liblmdb++ │ │ └── PKGBUILD ├── fink │ ├── lmdb++.info │ ├── lmdb.info │ └── lmdb.patch ├── macports │ └── databases │ │ └── lmdbxx │ │ └── Portfile └── portage │ ├── dev-db │ └── lmdb++ │ │ ├── Manifest │ │ └── lmdb++-0.9.14.0.ebuild │ ├── metadata │ └── layout.conf │ ├── overlay.xml │ └── profiles │ └── repo_name ├── example.cc └── lmdb++.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/Cookpit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/.gitignore -------------------------------------------------------------------------------- /android/Cookpit/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/.idea/compiler.xml -------------------------------------------------------------------------------- /android/Cookpit/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/.idea/gradle.xml -------------------------------------------------------------------------------- /android/Cookpit/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/.idea/modules.xml -------------------------------------------------------------------------------- /android/Cookpit/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/Cookpit/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/Cookpit/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/app/build.gradle -------------------------------------------------------------------------------- /android/Cookpit/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/Cookpit/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/build.gradle -------------------------------------------------------------------------------- /android/Cookpit/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/gradle.properties -------------------------------------------------------------------------------- /android/Cookpit/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/gradlew -------------------------------------------------------------------------------- /android/Cookpit/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/gradlew.bat -------------------------------------------------------------------------------- /android/Cookpit/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/jni/Android.mk -------------------------------------------------------------------------------- /android/Cookpit/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/Cookpit/jni/Application.mk -------------------------------------------------------------------------------- /android/Cookpit/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/android/README.md -------------------------------------------------------------------------------- /common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/common.gypi -------------------------------------------------------------------------------- /cookpit.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cookpit.gyp -------------------------------------------------------------------------------- /cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/.gitignore -------------------------------------------------------------------------------- /cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/README.md -------------------------------------------------------------------------------- /cpp/src/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/api.cpp -------------------------------------------------------------------------------- /cpp/src/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/api.hpp -------------------------------------------------------------------------------- /cpp/src/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/constants.hpp -------------------------------------------------------------------------------- /cpp/src/coordinate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/coordinate.hpp -------------------------------------------------------------------------------- /cpp/src/explore_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/explore_controller.cpp -------------------------------------------------------------------------------- /cpp/src/explore_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/explore_controller.hpp -------------------------------------------------------------------------------- /cpp/src/map_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/map_controller.cpp -------------------------------------------------------------------------------- /cpp/src/map_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/map_controller.hpp -------------------------------------------------------------------------------- /cpp/src/photo_comment_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/photo_comment_controller.cpp -------------------------------------------------------------------------------- /cpp/src/photo_comment_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/photo_comment_controller.hpp -------------------------------------------------------------------------------- /cpp/src/photo_detail_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/photo_detail_controller.cpp -------------------------------------------------------------------------------- /cpp/src/photo_detail_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/photo_detail_controller.hpp -------------------------------------------------------------------------------- /cpp/src/search_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/search_controller.cpp -------------------------------------------------------------------------------- /cpp/src/search_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/search_controller.hpp -------------------------------------------------------------------------------- /cpp/src/translator/JniMarshal+Coordinate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/translator/JniMarshal+Coordinate.hpp -------------------------------------------------------------------------------- /cpp/src/translator/ObjcMarshal+Coordinate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/translator/ObjcMarshal+Coordinate.hpp -------------------------------------------------------------------------------- /cpp/src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/utility.cpp -------------------------------------------------------------------------------- /cpp/src/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/cpp/src/utility.hpp -------------------------------------------------------------------------------- /djinni/api.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/djinni/api.djinni -------------------------------------------------------------------------------- /djinni/coordinate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/djinni/coordinate.yaml -------------------------------------------------------------------------------- /djinni/explore.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/djinni/explore.djinni -------------------------------------------------------------------------------- /djinni/map.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/djinni/map.djinni -------------------------------------------------------------------------------- /djinni/photo.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/djinni/photo.djinni -------------------------------------------------------------------------------- /djinni/search.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/djinni/search.djinni -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cartfile -------------------------------------------------------------------------------- /ios/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cartfile.resolved -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/Async.swift -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/Cookpit-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/Cookpit-Bridging-Header.h -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/ExploreViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/ExploreViewModel.swift -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/Info.plist -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/MapDataController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/MapDataController.swift -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/MapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/MapViewController.swift -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/MapViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/MapViewModel.swift -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/PhotoDataController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/PhotoDataController.swift -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/PhotoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/PhotoViewController.swift -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/SearchTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/SearchTableViewCell.swift -------------------------------------------------------------------------------- /ios/Cookpit/Cookpit/SearchViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/Cookpit/Cookpit/SearchViewModel.swift -------------------------------------------------------------------------------- /ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/ios/README.md -------------------------------------------------------------------------------- /utils/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/utils/clang-format -------------------------------------------------------------------------------- /utils/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/utils/glob.py -------------------------------------------------------------------------------- /utils/run_clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/utils/run_clang -------------------------------------------------------------------------------- /utils/run_djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/utils/run_djinni -------------------------------------------------------------------------------- /vendors/.gitignore: -------------------------------------------------------------------------------- 1 | #android build 2 | *.target.mk 3 | -------------------------------------------------------------------------------- /vendors/curl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl.mk -------------------------------------------------------------------------------- /vendors/curl/android/bin/arm64-v8a/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/bin/arm64-v8a/libcurl.a -------------------------------------------------------------------------------- /vendors/curl/android/bin/armeabi/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/bin/armeabi/libcurl.a -------------------------------------------------------------------------------- /vendors/curl/android/bin/mips/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/bin/mips/libcurl.a -------------------------------------------------------------------------------- /vendors/curl/android/bin/mips64/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/bin/mips64/libcurl.a -------------------------------------------------------------------------------- /vendors/curl/android/bin/x86/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/bin/x86/libcurl.a -------------------------------------------------------------------------------- /vendors/curl/android/bin/x86_64/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/bin/x86_64/libcurl.a -------------------------------------------------------------------------------- /vendors/curl/android/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/Makefile.am -------------------------------------------------------------------------------- /vendors/curl/android/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/Makefile.in -------------------------------------------------------------------------------- /vendors/curl/android/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/README -------------------------------------------------------------------------------- /vendors/curl/android/include/curl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/curl/Makefile.am -------------------------------------------------------------------------------- /vendors/curl/android/include/curl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/curl/Makefile.in -------------------------------------------------------------------------------- /vendors/curl/android/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/curl/curl.h -------------------------------------------------------------------------------- /vendors/curl/android/include/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/curl/curlbuild.h -------------------------------------------------------------------------------- /vendors/curl/android/include/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/curl/curlrules.h -------------------------------------------------------------------------------- /vendors/curl/android/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/curl/curlver.h -------------------------------------------------------------------------------- /vendors/curl/android/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/curl/easy.h -------------------------------------------------------------------------------- /vendors/curl/android/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/curl/mprintf.h -------------------------------------------------------------------------------- /vendors/curl/android/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/curl/multi.h -------------------------------------------------------------------------------- /vendors/curl/android/include/curl/stamp-h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/android/include/curl/stamp-h2 -------------------------------------------------------------------------------- /vendors/curl/ios/bin/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/bin/libcurl.a -------------------------------------------------------------------------------- /vendors/curl/ios/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/Makefile -------------------------------------------------------------------------------- /vendors/curl/ios/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/Makefile.am -------------------------------------------------------------------------------- /vendors/curl/ios/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/Makefile.in -------------------------------------------------------------------------------- /vendors/curl/ios/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/README -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/Makefile -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/Makefile.am -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/Makefile.in -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/curl.h -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/curlbuild.h -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/curlbuild.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/curlbuild.h.in -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/curlrules.h -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/curlver.h -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/easy.h -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/mprintf.h -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/multi.h -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/stamp-h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/stamp-h2 -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /vendors/curl/ios/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/ios/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /vendors/curl/lib/bin/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/bin/libcurl.a -------------------------------------------------------------------------------- /vendors/curl/lib/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/Makefile -------------------------------------------------------------------------------- /vendors/curl/lib/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/Makefile.am -------------------------------------------------------------------------------- /vendors/curl/lib/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/Makefile.in -------------------------------------------------------------------------------- /vendors/curl/lib/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/README -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/Makefile -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/Makefile.am -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/Makefile.in -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/curl.h -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/curlbuild.h -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/curlbuild.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/curlbuild.h.in -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/curlrules.h -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/curlver.h -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/easy.h -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/mprintf.h -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/multi.h -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/stamp-h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/stamp-h2 -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /vendors/curl/lib/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/curl/lib/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /vendors/djinni/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/.gitignore -------------------------------------------------------------------------------- /vendors/djinni/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/LICENSE -------------------------------------------------------------------------------- /vendors/djinni/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/Makefile -------------------------------------------------------------------------------- /vendors/djinni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/README.md -------------------------------------------------------------------------------- /vendors/djinni/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/common.gypi -------------------------------------------------------------------------------- /vendors/djinni/deps/java/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/deps/java/CREDITS.md -------------------------------------------------------------------------------- /vendors/djinni/deps/java/jsr305-3.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/deps/java/jsr305-3.0.0.jar -------------------------------------------------------------------------------- /vendors/djinni/deps/java/test/junit-4.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/deps/java/test/junit-4.11.jar -------------------------------------------------------------------------------- /vendors/djinni/example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/Makefile -------------------------------------------------------------------------------- /vendors/djinni/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/README.md -------------------------------------------------------------------------------- /vendors/djinni/example/android/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | -------------------------------------------------------------------------------- /vendors/djinni/example/android/.idea/.name: -------------------------------------------------------------------------------- 1 | TextSort -------------------------------------------------------------------------------- /vendors/djinni/example/android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/android/.idea/misc.xml -------------------------------------------------------------------------------- /vendors/djinni/example/android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/android/.idea/vcs.xml -------------------------------------------------------------------------------- /vendors/djinni/example/android/android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/android/android.iml -------------------------------------------------------------------------------- /vendors/djinni/example/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /vendors/djinni/example/android/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/android/app/app.iml -------------------------------------------------------------------------------- /vendors/djinni/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/android/build.gradle -------------------------------------------------------------------------------- /vendors/djinni/example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/android/gradlew -------------------------------------------------------------------------------- /vendors/djinni/example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/android/gradlew.bat -------------------------------------------------------------------------------- /vendors/djinni/example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /vendors/djinni/example/example.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/example.djinni -------------------------------------------------------------------------------- /vendors/djinni/example/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/example.yaml -------------------------------------------------------------------------------- /vendors/djinni/example/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/glob.py -------------------------------------------------------------------------------- /vendors/djinni/example/libtextsort.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/libtextsort.gyp -------------------------------------------------------------------------------- /vendors/djinni/example/local.properties.sample: -------------------------------------------------------------------------------- 1 | ndk.dir= 2 | -------------------------------------------------------------------------------- /vendors/djinni/example/localhost/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /vendors/djinni/example/localhost/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/localhost/Dockerfile -------------------------------------------------------------------------------- /vendors/djinni/example/localhost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/localhost/README.md -------------------------------------------------------------------------------- /vendors/djinni/example/localhost/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/localhost/build.xml -------------------------------------------------------------------------------- /vendors/djinni/example/objc/TextSort.xcodeproj/.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata/ 2 | -------------------------------------------------------------------------------- /vendors/djinni/example/objc/TextSort.xcworkspace/.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata/ 2 | -------------------------------------------------------------------------------- /vendors/djinni/example/objc/TextSort/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /vendors/djinni/example/run_djinni.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/example/run_djinni.sh -------------------------------------------------------------------------------- /vendors/djinni/intellij-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/intellij-plugin/README.md -------------------------------------------------------------------------------- /vendors/djinni/intellij-plugin/djinni.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/intellij-plugin/djinni.iml -------------------------------------------------------------------------------- /vendors/djinni/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/.gitignore -------------------------------------------------------------------------------- /vendors/djinni/src/.idea/.name: -------------------------------------------------------------------------------- 1 | djinni 2 | -------------------------------------------------------------------------------- /vendors/djinni/src/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/.idea/compiler.xml -------------------------------------------------------------------------------- /vendors/djinni/src/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/.idea/encodings.xml -------------------------------------------------------------------------------- /vendors/djinni/src/.idea/highlighting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/.idea/highlighting.xml -------------------------------------------------------------------------------- /vendors/djinni/src/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/.idea/misc.xml -------------------------------------------------------------------------------- /vendors/djinni/src/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/.idea/modules.xml -------------------------------------------------------------------------------- /vendors/djinni/src/.idea/modules/src.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/.idea/modules/src.iml -------------------------------------------------------------------------------- /vendors/djinni/src/.idea/sbt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/.idea/sbt.xml -------------------------------------------------------------------------------- /vendors/djinni/src/.idea/scala_compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/.idea/scala_compiler.xml -------------------------------------------------------------------------------- /vendors/djinni/src/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /vendors/djinni/src/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/.idea/vcs.xml -------------------------------------------------------------------------------- /vendors/djinni/src/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/ReadMe.txt -------------------------------------------------------------------------------- /vendors/djinni/src/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/build -------------------------------------------------------------------------------- /vendors/djinni/src/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/build.sbt -------------------------------------------------------------------------------- /vendors/djinni/src/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /vendors/djinni/src/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/project/plugins.sbt -------------------------------------------------------------------------------- /vendors/djinni/src/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/run -------------------------------------------------------------------------------- /vendors/djinni/src/run-assume-built: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/run-assume-built -------------------------------------------------------------------------------- /vendors/djinni/src/source/CppGenerator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/CppGenerator.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/CppMarshal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/CppMarshal.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/JNIGenerator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/JNIGenerator.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/JNIMarshal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/JNIMarshal.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/JavaGenerator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/JavaGenerator.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/JavaMarshal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/JavaMarshal.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/Main.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/Marshal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/Marshal.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/ObjcGenerator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/ObjcGenerator.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/ObjcMarshal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/ObjcMarshal.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/ObjcppMarshal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/ObjcppMarshal.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/YamlGenerator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/YamlGenerator.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/ast.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/ast.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/generator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/generator.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/meta.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/meta.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/parser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/parser.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/resolver.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/resolver.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/syntax.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/syntax.scala -------------------------------------------------------------------------------- /vendors/djinni/src/source/writer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/source/writer.scala -------------------------------------------------------------------------------- /vendors/djinni/src/support/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/support/sbt -------------------------------------------------------------------------------- /vendors/djinni/src/support/sbt-launch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/src/support/sbt-launch.jar -------------------------------------------------------------------------------- /vendors/djinni/support-lib/djinni_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/support-lib/djinni_common.hpp -------------------------------------------------------------------------------- /vendors/djinni/support-lib/jni/Marshal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/support-lib/jni/Marshal.hpp -------------------------------------------------------------------------------- /vendors/djinni/support-lib/objc/DJIError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/support-lib/objc/DJIError.h -------------------------------------------------------------------------------- /vendors/djinni/support-lib/objc/DJIError.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/support-lib/objc/DJIError.mm -------------------------------------------------------------------------------- /vendors/djinni/support-lib/support-lib.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/support-lib/support-lib.iml -------------------------------------------------------------------------------- /vendors/djinni/support-lib/support_lib.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/support-lib/support_lib.gyp -------------------------------------------------------------------------------- /vendors/djinni/test-suite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/Makefile -------------------------------------------------------------------------------- /vendors/djinni/test-suite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/README.md -------------------------------------------------------------------------------- /vendors/djinni/test-suite/djinni/all.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/djinni/all.djinni -------------------------------------------------------------------------------- /vendors/djinni/test-suite/djinni/date.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/djinni/date.djinni -------------------------------------------------------------------------------- /vendors/djinni/test-suite/djinni/date.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/djinni/date.yaml -------------------------------------------------------------------------------- /vendors/djinni/test-suite/djinni/enum.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/djinni/enum.djinni -------------------------------------------------------------------------------- /vendors/djinni/test-suite/djinni/map.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/djinni/map.djinni -------------------------------------------------------------------------------- /vendors/djinni/test-suite/djinni/set.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/djinni/set.djinni -------------------------------------------------------------------------------- /vendors/djinni/test-suite/djinni/test.djinni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/djinni/test.djinni -------------------------------------------------------------------------------- /vendors/djinni/test-suite/djinni/user_token.djinni: -------------------------------------------------------------------------------- 1 | user_token = interface +c +j +o { 2 | whoami() : string; 3 | } 4 | -------------------------------------------------------------------------------- /vendors/djinni/test-suite/handwritten-src/objc/tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /vendors/djinni/test-suite/java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/java/.gitignore -------------------------------------------------------------------------------- /vendors/djinni/test-suite/java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/java/CMakeLists.txt -------------------------------------------------------------------------------- /vendors/djinni/test-suite/java/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/java/build.xml -------------------------------------------------------------------------------- /vendors/djinni/test-suite/run_djinni.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/run_djinni.sh -------------------------------------------------------------------------------- /vendors/djinni/test-suite/test-suite.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/test-suite/test-suite.iml -------------------------------------------------------------------------------- /vendors/djinni/tools/format_whitespace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/djinni/tools/format_whitespace -------------------------------------------------------------------------------- /vendors/flowcpp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/flowcpp/.clang-format -------------------------------------------------------------------------------- /vendors/flowcpp/.gitignore: -------------------------------------------------------------------------------- 1 | # CLion 2 | .idea/ 3 | -------------------------------------------------------------------------------- /vendors/flowcpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/flowcpp/CMakeLists.txt -------------------------------------------------------------------------------- /vendors/flowcpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/flowcpp/README.md -------------------------------------------------------------------------------- /vendors/flowcpp/include/flowcpp/action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/flowcpp/include/flowcpp/action.hpp -------------------------------------------------------------------------------- /vendors/flowcpp/include/flowcpp/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/flowcpp/include/flowcpp/any.hpp -------------------------------------------------------------------------------- /vendors/flowcpp/include/flowcpp/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/flowcpp/include/flowcpp/common.h -------------------------------------------------------------------------------- /vendors/flowcpp/include/flowcpp/flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/flowcpp/include/flowcpp/flow.h -------------------------------------------------------------------------------- /vendors/flowcpp/include/flowcpp/store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/flowcpp/include/flowcpp/store.hpp -------------------------------------------------------------------------------- /vendors/flowcpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/flowcpp/main.cpp -------------------------------------------------------------------------------- /vendors/flowcpp/utils/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/flowcpp/utils/clang-format -------------------------------------------------------------------------------- /vendors/flowcpp/utils/run_clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/flowcpp/utils/run_clang -------------------------------------------------------------------------------- /vendors/googletest.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest.gyp -------------------------------------------------------------------------------- /vendors/googletest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/.gitignore -------------------------------------------------------------------------------- /vendors/googletest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/.travis.yml -------------------------------------------------------------------------------- /vendors/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /vendors/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/README.md -------------------------------------------------------------------------------- /vendors/googletest/googlemock/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googlemock/CHANGES -------------------------------------------------------------------------------- /vendors/googletest/googlemock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googlemock/CMakeLists.txt -------------------------------------------------------------------------------- /vendors/googletest/googlemock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googlemock/CONTRIBUTORS -------------------------------------------------------------------------------- /vendors/googletest/googlemock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googlemock/LICENSE -------------------------------------------------------------------------------- /vendors/googletest/googlemock/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googlemock/Makefile.am -------------------------------------------------------------------------------- /vendors/googletest/googlemock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googlemock/README.md -------------------------------------------------------------------------------- /vendors/googletest/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/googletest/googlemock/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googlemock/configure.ac -------------------------------------------------------------------------------- /vendors/googletest/googlemock/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googlemock/make/Makefile -------------------------------------------------------------------------------- /vendors/googletest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/googletest/googlemock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googlemock/src/gmock.cc -------------------------------------------------------------------------------- /vendors/googletest/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /vendors/googletest/googletest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/CHANGES -------------------------------------------------------------------------------- /vendors/googletest/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /vendors/googletest/googletest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/CONTRIBUTORS -------------------------------------------------------------------------------- /vendors/googletest/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/LICENSE -------------------------------------------------------------------------------- /vendors/googletest/googletest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/Makefile.am -------------------------------------------------------------------------------- /vendors/googletest/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/README.md -------------------------------------------------------------------------------- /vendors/googletest/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/googletest/googletest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/configure.ac -------------------------------------------------------------------------------- /vendors/googletest/googletest/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/docs/FAQ.md -------------------------------------------------------------------------------- /vendors/googletest/googletest/docs/Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/docs/Primer.md -------------------------------------------------------------------------------- /vendors/googletest/googletest/docs/Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/docs/Samples.md -------------------------------------------------------------------------------- /vendors/googletest/googletest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/m4/gtest.m4 -------------------------------------------------------------------------------- /vendors/googletest/googletest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/make/Makefile -------------------------------------------------------------------------------- /vendors/googletest/googletest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/msvc/gtest.sln -------------------------------------------------------------------------------- /vendors/googletest/googletest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/scripts/pump.py -------------------------------------------------------------------------------- /vendors/googletest/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/googletest/src/gtest.cc -------------------------------------------------------------------------------- /vendors/googletest/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/googletest/travis.sh -------------------------------------------------------------------------------- /vendors/gyp/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /vendors/gyp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/AUTHORS -------------------------------------------------------------------------------- /vendors/gyp/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/DEPS -------------------------------------------------------------------------------- /vendors/gyp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/LICENSE -------------------------------------------------------------------------------- /vendors/gyp/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /vendors/gyp/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/PRESUBMIT.py -------------------------------------------------------------------------------- /vendors/gyp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/README.md -------------------------------------------------------------------------------- /vendors/gyp/buildbot/aosp_manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/buildbot/aosp_manifest.xml -------------------------------------------------------------------------------- /vendors/gyp/buildbot/buildbot_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/buildbot/buildbot_run.py -------------------------------------------------------------------------------- /vendors/gyp/buildbot/commit_queue/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/buildbot/commit_queue/OWNERS -------------------------------------------------------------------------------- /vendors/gyp/buildbot/commit_queue/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/buildbot/commit_queue/README -------------------------------------------------------------------------------- /vendors/gyp/codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/codereview.settings -------------------------------------------------------------------------------- /vendors/gyp/data/win/large-pdb-shim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/data/win/large-pdb-shim.cc -------------------------------------------------------------------------------- /vendors/gyp/docs/Buildbot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/docs/Buildbot.md -------------------------------------------------------------------------------- /vendors/gyp/docs/GypVsCMake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/docs/GypVsCMake.md -------------------------------------------------------------------------------- /vendors/gyp/docs/Hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/docs/Hacking.md -------------------------------------------------------------------------------- /vendors/gyp/docs/InputFormatReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/docs/InputFormatReference.md -------------------------------------------------------------------------------- /vendors/gyp/docs/LanguageSpecification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/docs/LanguageSpecification.md -------------------------------------------------------------------------------- /vendors/gyp/docs/Source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/docs/Source.md -------------------------------------------------------------------------------- /vendors/gyp/docs/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/docs/Testing.md -------------------------------------------------------------------------------- /vendors/gyp/docs/UserDocumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/docs/UserDocumentation.md -------------------------------------------------------------------------------- /vendors/gyp/gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/gyp -------------------------------------------------------------------------------- /vendors/gyp/gyp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/gyp.bat -------------------------------------------------------------------------------- /vendors/gyp/gyp_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/gyp_main.py -------------------------------------------------------------------------------- /vendors/gyp/gyptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/gyptest.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/MSVSNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/MSVSNew.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/MSVSProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/MSVSProject.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/MSVSSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/MSVSSettings.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/MSVSSettings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/MSVSSettings_test.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/MSVSToolFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/MSVSToolFile.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/MSVSUserFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/MSVSUserFile.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/MSVSUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/MSVSUtil.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/MSVSVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/MSVSVersion.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/__init__.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/common.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/common_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/common_test.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/easy_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/easy_xml.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/easy_xml_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/easy_xml_test.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/flock_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/flock_tool.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/analyzer.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/android.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/cmake.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/eclipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/eclipse.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/gypd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/gypd.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/gypsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/gypsh.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/make.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/msvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/msvs.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/msvs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/msvs_test.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/ninja.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/ninja_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/ninja_test.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/xcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/xcode.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/generator/xcode_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/generator/xcode_test.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/input.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/input_test.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/mac_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/mac_tool.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/msvs_emulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/msvs_emulation.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/ninja_syntax.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/ordered_dict.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/simple_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/simple_copy.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/win_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/win_tool.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/xcode_emulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/xcode_emulation.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/xcode_ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/xcode_ninja.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/xcodeproj_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/xcodeproj_file.py -------------------------------------------------------------------------------- /vendors/gyp/pylib/gyp/xml_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/pylib/gyp/xml_fix.py -------------------------------------------------------------------------------- /vendors/gyp/samples/samples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/samples/samples -------------------------------------------------------------------------------- /vendors/gyp/samples/samples.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/samples/samples.bat -------------------------------------------------------------------------------- /vendors/gyp/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/setup.py -------------------------------------------------------------------------------- /vendors/gyp/test/actions-bare/gyptest-bare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions-bare/gyptest-bare.py -------------------------------------------------------------------------------- /vendors/gyp/test/actions-bare/src/bare.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions-bare/src/bare.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/actions-bare/src/bare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions-bare/src/bare.py -------------------------------------------------------------------------------- /vendors/gyp/test/actions-depfile/depfile.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions-depfile/depfile.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/actions-depfile/input.txt: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/actions-multiple/src/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions-multiple/src/copy.py -------------------------------------------------------------------------------- /vendors/gyp/test/actions-multiple/src/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions-multiple/src/foo.c -------------------------------------------------------------------------------- /vendors/gyp/test/actions-multiple/src/input.txt: -------------------------------------------------------------------------------- 1 | hello there 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/actions-multiple/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions-multiple/src/main.c -------------------------------------------------------------------------------- /vendors/gyp/test/actions-none/gyptest-none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions-none/gyptest-none.py -------------------------------------------------------------------------------- /vendors/gyp/test/actions-none/src/foo.cc: -------------------------------------------------------------------------------- 1 | foo.cc 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/actions-subdir/src/none.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions-subdir/src/none.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/actions/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions/gyptest-all.py -------------------------------------------------------------------------------- /vendors/gyp/test/actions/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions/gyptest-default.py -------------------------------------------------------------------------------- /vendors/gyp/test/actions/gyptest-errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions/gyptest-errors.py -------------------------------------------------------------------------------- /vendors/gyp/test/actions/src/actions.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions/src/actions.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/actions/src/subdir2/none.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/actions/src/subdir2/none.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/analyzer/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/analyzer/common.gypi -------------------------------------------------------------------------------- /vendors/gyp/test/analyzer/gyptest-analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/analyzer/gyptest-analyzer.py -------------------------------------------------------------------------------- /vendors/gyp/test/analyzer/subdir/subdir.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/analyzer/subdir/subdir.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/analyzer/subdir2/subdir.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/analyzer/subdir2/subdir.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/analyzer/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/analyzer/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/analyzer/test2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/analyzer/test2.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/analyzer/test3.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/analyzer/test3.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/analyzer/test4.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/analyzer/test4.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/analyzer/test5.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/analyzer/test5.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/android/32or64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/android/32or64.c -------------------------------------------------------------------------------- /vendors/gyp/test/android/file.in: -------------------------------------------------------------------------------- 1 | A boring test file 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/android/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/android/hello.c -------------------------------------------------------------------------------- /vendors/gyp/test/android/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/android/hello.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/android/host_32or64.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/android/host_32or64.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/android/settings-list.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/android/settings-list.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/android/settings.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/android/settings.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/android/writefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/android/writefile.c -------------------------------------------------------------------------------- /vendors/gyp/test/arflags/lib.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/arflags/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/arflags/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/assembly/src/as.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | :: Mock windows assembler. 3 | cl /MD /c %1 /Fo"%2" 4 | 5 | -------------------------------------------------------------------------------- /vendors/gyp/test/assembly/src/assembly.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/assembly/src/assembly.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/assembly/src/lib1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/assembly/src/lib1.S -------------------------------------------------------------------------------- /vendors/gyp/test/assembly/src/lib1.c: -------------------------------------------------------------------------------- 1 | int lib1_function(void) { 2 | return 42; 3 | } 4 | -------------------------------------------------------------------------------- /vendors/gyp/test/assembly/src/override.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/assembly/src/override.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/assembly/src/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/assembly/src/program.c -------------------------------------------------------------------------------- /vendors/gyp/test/build-option/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/build-option/hello.c -------------------------------------------------------------------------------- /vendors/gyp/test/build-option/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/build-option/hello.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/builddir/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/builddir/gyptest-all.py -------------------------------------------------------------------------------- /vendors/gyp/test/builddir/src/func1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/builddir/src/func1.c -------------------------------------------------------------------------------- /vendors/gyp/test/builddir/src/func2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/builddir/src/func2.c -------------------------------------------------------------------------------- /vendors/gyp/test/builddir/src/func3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/builddir/src/func3.c -------------------------------------------------------------------------------- /vendors/gyp/test/builddir/src/func4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/builddir/src/func4.c -------------------------------------------------------------------------------- /vendors/gyp/test/builddir/src/func5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/builddir/src/func5.c -------------------------------------------------------------------------------- /vendors/gyp/test/builddir/src/prog1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/builddir/src/prog1.c -------------------------------------------------------------------------------- /vendors/gyp/test/builddir/src/prog1.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/builddir/src/prog1.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/cflags/cflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/cflags/cflags.c -------------------------------------------------------------------------------- /vendors/gyp/test/cflags/cflags.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/cflags/cflags.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/cflags/gyptest-cflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/cflags/gyptest-cflags.py -------------------------------------------------------------------------------- /vendors/gyp/test/compilable/src/lib1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/compilable/src/lib1.cpp -------------------------------------------------------------------------------- /vendors/gyp/test/compilable/src/lib1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/compilable/src/lib1.hpp -------------------------------------------------------------------------------- /vendors/gyp/test/compiler-override/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/compiler-override/test.c -------------------------------------------------------------------------------- /vendors/gyp/test/configurations/target_platform/left.c: -------------------------------------------------------------------------------- 1 | const char *message(void) { 2 | return "left"; 3 | } 4 | -------------------------------------------------------------------------------- /vendors/gyp/test/configurations/target_platform/right.c: -------------------------------------------------------------------------------- 1 | const char *message(void) { 2 | return "right"; 3 | } 4 | -------------------------------------------------------------------------------- /vendors/gyp/test/copies/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/copies/gyptest-all.py -------------------------------------------------------------------------------- /vendors/gyp/test/copies/gyptest-attribs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/copies/gyptest-attribs.py -------------------------------------------------------------------------------- /vendors/gyp/test/copies/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/copies/gyptest-default.py -------------------------------------------------------------------------------- /vendors/gyp/test/copies/gyptest-samedir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/copies/gyptest-samedir.py -------------------------------------------------------------------------------- /vendors/gyp/test/copies/gyptest-slash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/copies/gyptest-slash.py -------------------------------------------------------------------------------- /vendors/gyp/test/copies/gyptest-updir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/copies/gyptest-updir.py -------------------------------------------------------------------------------- /vendors/gyp/test/copies/src/copies.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/copies/src/copies.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/copies/src/directory/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/copies/src/directory/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/copies/src/directory/subdir/file5: -------------------------------------------------------------------------------- 1 | file5 contents 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/copies/src/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/copies/src/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/copies/src/parentdir/subdir/file6: -------------------------------------------------------------------------------- 1 | file6 contents 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/custom-generator/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/custom-generator/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/cxxflags/cxxflags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/cxxflags/cxxflags.cc -------------------------------------------------------------------------------- /vendors/gyp/test/cxxflags/cxxflags.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/cxxflags/cxxflags.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/defines/defines-env.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/defines/defines-env.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/defines/defines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/defines/defines.c -------------------------------------------------------------------------------- /vendors/gyp/test/defines/defines.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/defines/defines.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/dependencies/a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/dependencies/a.c -------------------------------------------------------------------------------- /vendors/gyp/test/dependencies/b/b.c: -------------------------------------------------------------------------------- 1 | int funcB() { 2 | return 2; 3 | } 4 | -------------------------------------------------------------------------------- /vendors/gyp/test/dependencies/b/b.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/dependencies/b/b.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/dependencies/b/b3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/dependencies/b/b3.c -------------------------------------------------------------------------------- /vendors/gyp/test/dependencies/c/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/dependencies/c/c.c -------------------------------------------------------------------------------- /vendors/gyp/test/dependencies/c/c.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/dependencies/c/c.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/dependencies/c/d.c: -------------------------------------------------------------------------------- 1 | int funcD() { 2 | return 4; 3 | } 4 | -------------------------------------------------------------------------------- /vendors/gyp/test/dependencies/lib_only.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/dependencies/lib_only.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/dependencies/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/dependencies/main.c -------------------------------------------------------------------------------- /vendors/gyp/test/errors/duplicate_node.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/errors/duplicate_node.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/errors/duplicate_rule.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/errors/duplicate_rule.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/errors/file_cycle0.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/errors/file_cycle0.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/errors/file_cycle1.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/errors/file_cycle1.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/errors/gyptest-errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/errors/gyptest-errors.py -------------------------------------------------------------------------------- /vendors/gyp/test/errors/missing_dep.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/errors/missing_dep.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/escaping/colon/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/escaping/colon/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/escaping/gyptest-colon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/escaping/gyptest-colon.py -------------------------------------------------------------------------------- /vendors/gyp/test/exclusion/exclusion.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/exclusion/exclusion.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/exclusion/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/exclusion/hello.c -------------------------------------------------------------------------------- /vendors/gyp/test/external-cross-compile/src/bogus1.cc: -------------------------------------------------------------------------------- 1 | From bogus1.cc 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/external-cross-compile/src/bogus2.c: -------------------------------------------------------------------------------- 1 | From bogus2.c 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/external-cross-compile/src/test1.cc: -------------------------------------------------------------------------------- 1 | From test1.cc 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/external-cross-compile/src/test2.c: -------------------------------------------------------------------------------- 1 | From test2.c 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/external-cross-compile/src/test3.cc: -------------------------------------------------------------------------------- 1 | From test3.cc 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/external-cross-compile/src/test4.c: -------------------------------------------------------------------------------- 1 | From test4.c 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/copies/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/copies/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/copies/subdir/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/copies/subdir/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/mac-bundle/app.order: -------------------------------------------------------------------------------- 1 | _main 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/mac-bundle/header.h: -------------------------------------------------------------------------------- 1 | int f(); 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/mac-bundle/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/mac-bundle/resource.sb: -------------------------------------------------------------------------------- 1 | A text file. 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/rules/subdir2/file1.in0: -------------------------------------------------------------------------------- 1 | Hello from file1.in0 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/rules/subdir2/file2.in0: -------------------------------------------------------------------------------- 1 | Hello from file2.in0 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/rules/subdir2/file3.in1: -------------------------------------------------------------------------------- 1 | Hello from file3.in1 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/rules/subdir2/file4.in1: -------------------------------------------------------------------------------- 1 | Hello from file4.in1 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/src/inc1/include1.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE1_STRING "inc1/include1.h" 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/src/subdir2/inc2/include2.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE2_STRING "inc2/include2.h" 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/generator-output/src/subdir3/inc3/include3.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE3_STRING "inc3/include3.h" 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/gyp-defines/defines.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/gyp-defines/defines.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/gyp-defines/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/gyp-defines/echo.py -------------------------------------------------------------------------------- /vendors/gyp/test/hard_dependency/src/a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hard_dependency/src/a.c -------------------------------------------------------------------------------- /vendors/gyp/test/hard_dependency/src/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hard_dependency/src/a.h -------------------------------------------------------------------------------- /vendors/gyp/test/hard_dependency/src/b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hard_dependency/src/b.c -------------------------------------------------------------------------------- /vendors/gyp/test/hard_dependency/src/b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hard_dependency/src/b.h -------------------------------------------------------------------------------- /vendors/gyp/test/hard_dependency/src/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hard_dependency/src/c.c -------------------------------------------------------------------------------- /vendors/gyp/test/hard_dependency/src/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hard_dependency/src/c.h -------------------------------------------------------------------------------- /vendors/gyp/test/hard_dependency/src/d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hard_dependency/src/d.c -------------------------------------------------------------------------------- /vendors/gyp/test/hello/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hello/gyptest-all.py -------------------------------------------------------------------------------- /vendors/gyp/test/hello/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hello/gyptest-default.py -------------------------------------------------------------------------------- /vendors/gyp/test/hello/gyptest-regyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hello/gyptest-regyp.py -------------------------------------------------------------------------------- /vendors/gyp/test/hello/gyptest-target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hello/gyptest-target.py -------------------------------------------------------------------------------- /vendors/gyp/test/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hello/hello.c -------------------------------------------------------------------------------- /vendors/gyp/test/hello/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hello/hello.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/hello/hello2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hello/hello2.c -------------------------------------------------------------------------------- /vendors/gyp/test/hello/hello2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/hello/hello2.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/home_dot_gyp/src/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/home_dot_gyp/src/all.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/include_dirs/src/inc.h: -------------------------------------------------------------------------------- 1 | #define INC_STRING "inc.h" 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/include_dirs/src/inc1/include1.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE1_STRING "include1.h" 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/include_dirs/src/subdir/inc.h: -------------------------------------------------------------------------------- 1 | #define INC_STRING "subdir/inc.h" 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/intermediate_dir/src/shared_infile.txt: -------------------------------------------------------------------------------- 1 | dummy input 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/ios/app-bundle/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/ios/app-bundle/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/ios/gyptest-app-ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/ios/gyptest-app-ios.py -------------------------------------------------------------------------------- /vendors/gyp/test/ios/gyptest-archs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/ios/gyptest-archs.py -------------------------------------------------------------------------------- /vendors/gyp/test/ios/gyptest-extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/ios/gyptest-extension.py -------------------------------------------------------------------------------- /vendors/gyp/test/ios/gyptest-watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/ios/gyptest-watch.py -------------------------------------------------------------------------------- /vendors/gyp/test/ios/watch/watch.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/ios/watch/watch.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/lib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/lib/README.txt -------------------------------------------------------------------------------- /vendors/gyp/test/lib/TestCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/lib/TestCmd.py -------------------------------------------------------------------------------- /vendors/gyp/test/lib/TestCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/lib/TestCommon.py -------------------------------------------------------------------------------- /vendors/gyp/test/lib/TestGyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/lib/TestGyp.py -------------------------------------------------------------------------------- /vendors/gyp/test/lib/TestMac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/lib/TestMac.py -------------------------------------------------------------------------------- /vendors/gyp/test/lib/TestWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/lib/TestWin.py -------------------------------------------------------------------------------- /vendors/gyp/test/library/gyptest-shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/library/gyptest-shared.py -------------------------------------------------------------------------------- /vendors/gyp/test/library/gyptest-static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/library/gyptest-static.py -------------------------------------------------------------------------------- /vendors/gyp/test/library/src/lib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/library/src/lib1.c -------------------------------------------------------------------------------- /vendors/gyp/test/library/src/lib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/library/src/lib2.c -------------------------------------------------------------------------------- /vendors/gyp/test/library/src/library.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/library/src/library.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/library/src/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/library/src/program.c -------------------------------------------------------------------------------- /vendors/gyp/test/link-dependency/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/link-dependency/main.c -------------------------------------------------------------------------------- /vendors/gyp/test/link-dependency/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/link-dependency/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/link-objects/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/link-objects/base.c -------------------------------------------------------------------------------- /vendors/gyp/test/link-objects/extra.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void extra() { 4 | printf("PASS\n"); 5 | } 6 | -------------------------------------------------------------------------------- /vendors/gyp/test/linux/implicit-rpath/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/linux/implicit-rpath/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/app-bundle/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/app-bundle/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/app-bundle/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/archs/empty_main.cc: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/archs/file.mm: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/archs/file_a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/archs/file_a.cc -------------------------------------------------------------------------------- /vendors/gyp/test/mac/archs/file_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/archs/file_a.h -------------------------------------------------------------------------------- /vendors/gyp/test/mac/archs/file_b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/archs/file_b.cc -------------------------------------------------------------------------------- /vendors/gyp/test/mac/archs/file_b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/archs/file_b.h -------------------------------------------------------------------------------- /vendors/gyp/test/mac/archs/file_c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/archs/file_c.cc -------------------------------------------------------------------------------- /vendors/gyp/test/mac/archs/file_d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/archs/file_d.cc -------------------------------------------------------------------------------- /vendors/gyp/test/mac/archs/header.h: -------------------------------------------------------------------------------- 1 | typedef int MyInt; 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/archs/my_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/archs/my_file.cc -------------------------------------------------------------------------------- /vendors/gyp/test/mac/archs/my_main_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/archs/my_main_file.cc -------------------------------------------------------------------------------- /vendors/gyp/test/mac/bundle-resources/secret.txt: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/cflags/ccfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/cflags/ccfile.cc -------------------------------------------------------------------------------- /vendors/gyp/test/mac/cflags/cfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/cflags/cfile.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/cflags/cppfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/cflags/cppfile.cpp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/cflags/cxxfile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/cflags/cxxfile.cxx -------------------------------------------------------------------------------- /vendors/gyp/test/mac/cflags/mfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/cflags/mfile.m -------------------------------------------------------------------------------- /vendors/gyp/test/mac/cflags/mmfile.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/cflags/mmfile.mm -------------------------------------------------------------------------------- /vendors/gyp/test/mac/cflags/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/cflags/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/copy-dylib/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/copy-dylib/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/copy-dylib/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/debuginfo/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/debuginfo/file.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/debuginfo/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/debuginfo/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/depend-on-bundle/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/depend-on-bundle/bundle.c: -------------------------------------------------------------------------------- 1 | int f() { return 42; } 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/framework/TestFramework/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/framework/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/global-settings/src/dir2/file.txt: -------------------------------------------------------------------------------- 1 | File. 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-app-error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-app-error.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-app.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-archs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-archs.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-cflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-cflags.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-copies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-copies.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-copy-dylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-copy-dylib.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-debuginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-debuginfo.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-framework.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-ldflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-ldflags.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-libraries.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-lto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-lto.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-objc-arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-objc-arc.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-objc-gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-objc-gc.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-postbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-postbuild.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-rebuild.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-rpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-rpath.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-sdkroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-sdkroot.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-strip.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-xcode-gcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-xcode-gcc.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/gyptest-xctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/gyptest-xctest.py -------------------------------------------------------------------------------- /vendors/gyp/test/mac/identical-name/proxy/proxy.cc: -------------------------------------------------------------------------------- 1 | // Empty file 2 | 3 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/identical-name/proxy/testlib/testlib.cc: -------------------------------------------------------------------------------- 1 | // Empty file 2 | 3 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/identical-name/testlib/void.cc: -------------------------------------------------------------------------------- 1 | // Empty file 2 | 3 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/installname/file.c: -------------------------------------------------------------------------------- 1 | int f() { return 0; } 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/installname/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/installname/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/installname/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/ldflags-libtool/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/ldflags/subdirectory/symbol_list.def: -------------------------------------------------------------------------------- 1 | _f 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/libtool-zero/mylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/libtool-zero/mylib.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/libtool-zero/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/libtool-zero/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/lto/asmfile.S: -------------------------------------------------------------------------------- 1 | .globl _asfun 2 | ret 3 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/lto/ccfile.cc: -------------------------------------------------------------------------------- 1 | void ccfun() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/lto/cfile.c: -------------------------------------------------------------------------------- 1 | void cfun() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/lto/mfile.m: -------------------------------------------------------------------------------- 1 | void mfun() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/lto/mmfile.mm: -------------------------------------------------------------------------------- 1 | void mmfun() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/lto/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/lto/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/missing-cfbundlesignature/file.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/objc-arc/c-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/objc-arc/c-file.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/objc-arc/cc-file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/objc-arc/cc-file.cc -------------------------------------------------------------------------------- /vendors/gyp/test/mac/objc-arc/m-file.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/objc-arc/m-file.m -------------------------------------------------------------------------------- /vendors/gyp/test/mac/objc-arc/mm-file.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/objc-arc/mm-file.mm -------------------------------------------------------------------------------- /vendors/gyp/test/mac/objc-arc/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/objc-arc/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/objc-gc/c-file.c: -------------------------------------------------------------------------------- 1 | void c_fun() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/objc-gc/cc-file.cc: -------------------------------------------------------------------------------- 1 | void cc_fun() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/objc-gc/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/objc-gc/main.m -------------------------------------------------------------------------------- /vendors/gyp/test/mac/objc-gc/needs-gc-mm.mm: -------------------------------------------------------------------------------- 1 | void objcpp_fun() { } 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/objc-gc/needs-gc.m: -------------------------------------------------------------------------------- 1 | void objc_fun() { } 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/objc-gc/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/objc-gc/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/postbuild-copy-bundle/copied.txt: -------------------------------------------------------------------------------- 1 | old copied file 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/postbuild-copy-bundle/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/postbuild-fail/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/postbuild-fail/file.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/postbuilds/copy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cp "$@" 4 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/postbuilds/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/postbuilds/file.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/postbuilds/file_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/postbuilds/file_g.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/postbuilds/file_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/postbuilds/file_h.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/postbuilds/subdirectory/copied_file.txt: -------------------------------------------------------------------------------- 1 | This file should be copied to the products dir. 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/postbuilds/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/postbuilds/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/prefixheader/file.c: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/prefixheader/file.cc: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/prefixheader/file.m: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/prefixheader/file.mm: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/prefixheader/header.h: -------------------------------------------------------------------------------- 1 | typedef int MyInt; 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/prefixheader/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/prefixheader/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/rebuild/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/rebuild/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/rebuild/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/rebuild/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/rpath/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/rpath/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/rpath/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/rpath/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/sdkroot/file.cc: -------------------------------------------------------------------------------- 1 | #include 2 | using std::map; 3 | 4 | int main() { 5 | } 6 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/sdkroot/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/sdkroot/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/sourceless-module/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/sourceless-module/empty.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/sourceless-module/fun.c: -------------------------------------------------------------------------------- 1 | int f() { return 42; } 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/strip/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/strip/file.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/strip/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/strip/main.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/strip/strip.saves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/strip/strip.saves -------------------------------------------------------------------------------- /vendors/gyp/test/mac/strip/subdirectory/nested_file.c: -------------------------------------------------------------------------------- 1 | void nested_f() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/strip/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/strip/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/type_envvars/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/type_envvars/file.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/type_envvars/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/type_envvars/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/unicode-settings/file.cc: -------------------------------------------------------------------------------- 1 | int main() { 2 | } 3 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xcode-env-order/file.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xcode-env-order/file.ext2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xcode-env-order/file.ext3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xcode-gcc/aliasing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/xcode-gcc/aliasing.cc -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xcode-gcc/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/xcode-gcc/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xcode-gcc/valid_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/xcode-gcc/valid_c.c -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xcode-gcc/valid_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/xcode-gcc/valid_cc.cc -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xcode-gcc/valid_m.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/xcode-gcc/valid_m.m -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xcode-gcc/valid_mm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/xcode-gcc/valid_mm.mm -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xcode-support-actions/source.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xctest/MyClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/xctest/MyClass.h -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xctest/MyClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/xctest/MyClass.m -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xctest/TestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/xctest/TestCase.m -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xctest/resource.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/mac/xctest/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/mac/xctest/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/make/dependencies.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/make/dependencies.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/make/gyptest-noload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/make/gyptest-noload.py -------------------------------------------------------------------------------- /vendors/gyp/test/make/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/make/main.cc -------------------------------------------------------------------------------- /vendors/gyp/test/make/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/make/noload/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/make/noload/all.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/make/noload/lib/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/make/noload/lib/shared.c -------------------------------------------------------------------------------- /vendors/gyp/test/make/noload/lib/shared.h: -------------------------------------------------------------------------------- 1 | extern const char kSharedStr[]; 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/make/noload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/make/noload/main.c -------------------------------------------------------------------------------- /vendors/gyp/test/make_global_settings/full-toolchain/bar.cc: -------------------------------------------------------------------------------- 1 | #error Not a real source file 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/make_global_settings/full-toolchain/foo.c: -------------------------------------------------------------------------------- 1 | #error Not a real source file 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/many-actions/file0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/many-actions/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/many-actions/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/many-actions/file3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/many-actions/file4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/module/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/module/gyptest-default.py -------------------------------------------------------------------------------- /vendors/gyp/test/module/src/lib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/module/src/lib1.c -------------------------------------------------------------------------------- /vendors/gyp/test/module/src/lib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/module/src/lib2.c -------------------------------------------------------------------------------- /vendors/gyp/test/module/src/module.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/module/src/module.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/module/src/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/module/src/program.c -------------------------------------------------------------------------------- /vendors/gyp/test/msvs/buildevents/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/msvs/buildevents/main.cc -------------------------------------------------------------------------------- /vendors/gyp/test/msvs/config_attrs/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/msvs/config_attrs/hello.c -------------------------------------------------------------------------------- /vendors/gyp/test/msvs/express/express.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/msvs/express/express.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/msvs/filters/filters.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/msvs/filters/filters.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/msvs/props/AppName.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/msvs/props/AppName.props -------------------------------------------------------------------------------- /vendors/gyp/test/msvs/props/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/msvs/props/hello.c -------------------------------------------------------------------------------- /vendors/gyp/test/msvs/props/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/msvs/props/hello.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/msvs/uldi2010/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/msvs/uldi2010/hello.c -------------------------------------------------------------------------------- /vendors/gyp/test/msvs/uldi2010/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/msvs/uldi2010/hello.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/msvs/uldi2010/hello2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/msvs/uldi2010/hello2.c -------------------------------------------------------------------------------- /vendors/gyp/test/ninja/chained-dependency/chained.c: -------------------------------------------------------------------------------- 1 | #include "generated/header.h" 2 | 3 | int main(void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /vendors/gyp/test/ninja/s-needs-no-depfiles/empty.s: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/ninja/use-console/foo.bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/ninja/use-console/foo.bar -------------------------------------------------------------------------------- /vendors/gyp/test/no-cpp/gyptest-no-cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/no-cpp/gyptest-no-cpp.py -------------------------------------------------------------------------------- /vendors/gyp/test/no-cpp/src/call-f-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/no-cpp/src/call-f-main.c -------------------------------------------------------------------------------- /vendors/gyp/test/no-cpp/src/empty-main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/no-cpp/src/f.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/no-cpp/src/f.cc -------------------------------------------------------------------------------- /vendors/gyp/test/no-cpp/src/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/no-cpp/src/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/product/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/product/hello.c -------------------------------------------------------------------------------- /vendors/gyp/test/product/product.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/product/product.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/prune_targets/lib1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/prune_targets/lib1.cc -------------------------------------------------------------------------------- /vendors/gyp/test/prune_targets/lib2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/prune_targets/lib2.cc -------------------------------------------------------------------------------- /vendors/gyp/test/prune_targets/lib3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/prune_targets/lib3.cc -------------------------------------------------------------------------------- /vendors/gyp/test/prune_targets/program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/prune_targets/program.cc -------------------------------------------------------------------------------- /vendors/gyp/test/prune_targets/test1.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/prune_targets/test1.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/prune_targets/test2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/prune_targets/test2.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/relative/foo/a/a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/relative/foo/a/a.cc -------------------------------------------------------------------------------- /vendors/gyp/test/relative/foo/a/a.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/relative/foo/a/a.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/relative/foo/a/c/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/relative/foo/a/c/c.cc -------------------------------------------------------------------------------- /vendors/gyp/test/relative/foo/a/c/c.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/relative/foo/a/c/c.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/relative/foo/b/b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/relative/foo/b/b.cc -------------------------------------------------------------------------------- /vendors/gyp/test/relative/foo/b/b.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/relative/foo/b/b.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/rename/filecase/file.c: -------------------------------------------------------------------------------- 1 | int main() { return 0; } 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/rename/filecase/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/rename/filecase/test.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/restat/gyptest-restat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/restat/gyptest-restat.py -------------------------------------------------------------------------------- /vendors/gyp/test/restat/src/restat.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/restat/src/restat.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/restat/src/touch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/restat/src/touch.py -------------------------------------------------------------------------------- /vendors/gyp/test/rules-dirname/src/subdir/a/b/c.printvars: -------------------------------------------------------------------------------- 1 | # Empty file for testing build rules 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/rules-dirname/src/subdir/foo/bar/baz.printvars: -------------------------------------------------------------------------------- 1 | # Empty file for testing build rules 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/rules-rebuild/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/rules-rebuild/src/main.c -------------------------------------------------------------------------------- /vendors/gyp/test/rules/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/rules/gyptest-all.py -------------------------------------------------------------------------------- /vendors/gyp/test/rules/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/rules/gyptest-default.py -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/actions.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/rules/src/actions.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/an_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/rules/src/an_asm.S -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/as.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/rules/src/as.bat -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/copy-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/rules/src/copy-file.py -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/external/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/external/file2.in: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/input-root.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/rules/src/input-root.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/noaction/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/rules/src/rule.py -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/somefile.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/subdir2/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/rules/src/subdir2/file2.in: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/same-gyp-name/src/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/same-gyp-name/src/all.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/sanitize-rule-names/blah.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/self-dependency/dep.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/self-dependency/dep.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/sibling/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/sibling/gyptest-all.py -------------------------------------------------------------------------------- /vendors/gyp/test/sibling/src/build/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/sibling/src/build/all.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/sibling/src/prog1/prog1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/sibling/src/prog1/prog1.c -------------------------------------------------------------------------------- /vendors/gyp/test/sibling/src/prog2/prog2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/sibling/src/prog2/prog2.c -------------------------------------------------------------------------------- /vendors/gyp/test/small/gyptest-small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/small/gyptest-small.py -------------------------------------------------------------------------------- /vendors/gyp/test/standalone/standalone.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/standalone/standalone.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/subdirectory/src/prog1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/subdirectory/src/prog1.c -------------------------------------------------------------------------------- /vendors/gyp/test/target/gyptest-target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/target/gyptest-target.py -------------------------------------------------------------------------------- /vendors/gyp/test/target/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/target/hello.c -------------------------------------------------------------------------------- /vendors/gyp/test/target/target.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/target/target.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/toolsets/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/toolsets/main.cc -------------------------------------------------------------------------------- /vendors/gyp/test/toolsets/toolsets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/toolsets/toolsets.cc -------------------------------------------------------------------------------- /vendors/gyp/test/toolsets/toolsets.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/toolsets/toolsets.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/variables/commands/test.py: -------------------------------------------------------------------------------- 1 | print "sample\\path\\foo.cpp" 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/asm-files/b.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/asm-files/c.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/asm-files/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/asm-files/hello.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/batch-file-action/infile: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/command-quote/a.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/command-quote/go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/command-quote/go.bat -------------------------------------------------------------------------------- /vendors/gyp/test/win/compiler-flags/subdir/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-asm-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-asm-files.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-cl-pdbname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-cl-pdbname.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-cl-rtti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-cl-rtti.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-lib-ltcg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-lib-ltcg.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-link-aslr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-link-aslr.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-link-ltcg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-link-ltcg.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-link-pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-link-pdb.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-link-pgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-link-pgo.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-link-shard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-link-shard.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-link-uldi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-link-uldi.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-midl-rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-midl-rules.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-ml-safeseh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-ml-safeseh.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/gyptest-rc-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/gyptest-rc-build.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/idl-excluded/bad.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/idl-excluded/bad.idl -------------------------------------------------------------------------------- /vendors/gyp/test/win/idl-rules/Window.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/idl-rules/Window.idl -------------------------------------------------------------------------------- /vendors/gyp/test/win/importlib/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/importlib/hello.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/large-pdb/dllmain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/large-pdb/dllmain.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/large-pdb/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/large-pdb/main.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/lib-flags/answer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/lib-flags/answer.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/lib-flags/answer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/lib-flags/answer.h -------------------------------------------------------------------------------- /vendors/gyp/test/win/lib-flags/ltcg.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/lib-flags/ltcg.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/win/linker-flags/a/x.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/linker-flags/a/x.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/linker-flags/a/z.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/linker-flags/a/z.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/linker-flags/aslr.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/linker-flags/aslr.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/win/linker-flags/b/y.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/linker-flags/b/y.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/linker-flags/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/linker-flags/hello.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/linker-flags/ltcg.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/linker-flags/ltcg.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/win/linker-flags/pgo.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/linker-flags/pgo.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/win/linker-flags/x.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/linker-flags/x.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/linker-flags/y.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/linker-flags/y.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/linker-flags/z.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/linker-flags/z.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/ml-safeseh/a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/ml-safeseh/a.asm -------------------------------------------------------------------------------- /vendors/gyp/test/win/ml-safeseh/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/ml-safeseh/hello.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/precompiled/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/precompiled/hello.c -------------------------------------------------------------------------------- /vendors/gyp/test/win/precompiled/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/precompiled/hello.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/win/precompiled/hello2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/precompiled/hello2.c -------------------------------------------------------------------------------- /vendors/gyp/test/win/precompiled/precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/precompiled/precomp.c -------------------------------------------------------------------------------- /vendors/gyp/test/win/rc-build/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/rc-build/Resource.h -------------------------------------------------------------------------------- /vendors/gyp/test/win/rc-build/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/rc-build/hello.cpp -------------------------------------------------------------------------------- /vendors/gyp/test/win/rc-build/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/rc-build/hello.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/win/rc-build/hello.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/rc-build/hello.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/rc-build/hello.ico -------------------------------------------------------------------------------- /vendors/gyp/test/win/rc-build/hello.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/rc-build/hello.rc -------------------------------------------------------------------------------- /vendors/gyp/test/win/rc-build/hello3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/rc-build/hello3.rc -------------------------------------------------------------------------------- /vendors/gyp/test/win/rc-build/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/rc-build/small.ico -------------------------------------------------------------------------------- /vendors/gyp/test/win/rc-build/subdir/include.h: -------------------------------------------------------------------------------- 1 | // Just exists to make sure it can be included. 2 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/rc-build/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/rc-build/targetver.h -------------------------------------------------------------------------------- /vendors/gyp/test/win/shard/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/shard/hello.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/shard/hello1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/shard/hello1.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/shard/hello2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/shard/hello2.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/shard/hello3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/shard/hello3.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/shard/hello4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/shard/hello4.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/shard/shard.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/shard/shard.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/win/shard/shard_ref.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/shard/shard_ref.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/win/system-include/bar/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/system-include/common/commonheader.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/system-include/foo/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/uldi/a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/uldi/a.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/uldi/b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/uldi/b.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/uldi/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/uldi/main.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/uldi/uldi.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/uldi/uldi.gyp -------------------------------------------------------------------------------- /vendors/gyp/test/win/vs-macros/as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/vs-macros/as.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/vs-macros/do_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/vs-macros/do_stuff.py -------------------------------------------------------------------------------- /vendors/gyp/test/win/vs-macros/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/test/win/vs-macros/hello.cc -------------------------------------------------------------------------------- /vendors/gyp/test/win/vs-macros/input.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/gyp/test/win/vs-macros/stuff.blah: -------------------------------------------------------------------------------- 1 | Random data file. 2 | -------------------------------------------------------------------------------- /vendors/gyp/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/tools/README -------------------------------------------------------------------------------- /vendors/gyp/tools/Xcode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/tools/Xcode/README -------------------------------------------------------------------------------- /vendors/gyp/tools/emacs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/tools/emacs/README -------------------------------------------------------------------------------- /vendors/gyp/tools/emacs/gyp-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/tools/emacs/gyp-tests.el -------------------------------------------------------------------------------- /vendors/gyp/tools/emacs/gyp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/tools/emacs/gyp.el -------------------------------------------------------------------------------- /vendors/gyp/tools/emacs/run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/tools/emacs/run-unit-tests.sh -------------------------------------------------------------------------------- /vendors/gyp/tools/emacs/testdata/media.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/tools/emacs/testdata/media.gyp -------------------------------------------------------------------------------- /vendors/gyp/tools/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/tools/graphviz.py -------------------------------------------------------------------------------- /vendors/gyp/tools/pretty_gyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/tools/pretty_gyp.py -------------------------------------------------------------------------------- /vendors/gyp/tools/pretty_sln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/tools/pretty_sln.py -------------------------------------------------------------------------------- /vendors/gyp/tools/pretty_vcproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/gyp/tools/pretty_vcproj.py -------------------------------------------------------------------------------- /vendors/json11.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/json11.gyp -------------------------------------------------------------------------------- /vendors/json11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/json11/.gitignore -------------------------------------------------------------------------------- /vendors/json11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/json11/CMakeLists.txt -------------------------------------------------------------------------------- /vendors/json11/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/json11/LICENSE.txt -------------------------------------------------------------------------------- /vendors/json11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/json11/Makefile -------------------------------------------------------------------------------- /vendors/json11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/json11/README.md -------------------------------------------------------------------------------- /vendors/json11/json11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/json11/json11.cpp -------------------------------------------------------------------------------- /vendors/json11/json11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/json11/json11.hpp -------------------------------------------------------------------------------- /vendors/json11/json11.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/json11/json11.pc.in -------------------------------------------------------------------------------- /vendors/json11/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/json11/test.cpp -------------------------------------------------------------------------------- /vendors/lmdb.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb.gyp -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/.gitignore -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/CHANGES -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/COPYRIGHT -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/Doxyfile -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/LICENSE -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/Makefile -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/intro.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/intro.doc -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/lmdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/lmdb.h -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mdb.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mdb_copy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mdb_copy.1 -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mdb_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mdb_copy.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mdb_dump.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mdb_dump.1 -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mdb_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mdb_dump.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mdb_load.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mdb_load.1 -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mdb_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mdb_load.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mdb_stat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mdb_stat.1 -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mdb_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mdb_stat.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/midl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/midl.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/midl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/midl.h -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mtest.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mtest2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mtest2.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mtest3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mtest3.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mtest4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mtest4.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mtest5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mtest5.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/mtest6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/mtest6.c -------------------------------------------------------------------------------- /vendors/lmdb/libraries/liblmdb/tooltag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdb/libraries/liblmdb/tooltag -------------------------------------------------------------------------------- /vendors/lmdbxx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/.gitignore -------------------------------------------------------------------------------- /vendors/lmdbxx/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/.travis.yml -------------------------------------------------------------------------------- /vendors/lmdbxx/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/AUTHORS -------------------------------------------------------------------------------- /vendors/lmdbxx/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/CREDITS -------------------------------------------------------------------------------- /vendors/lmdbxx/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/Doxyfile -------------------------------------------------------------------------------- /vendors/lmdbxx/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/INSTALL -------------------------------------------------------------------------------- /vendors/lmdbxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/Makefile -------------------------------------------------------------------------------- /vendors/lmdbxx/README: -------------------------------------------------------------------------------- 1 | README.rst -------------------------------------------------------------------------------- /vendors/lmdbxx/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/README.rst -------------------------------------------------------------------------------- /vendors/lmdbxx/TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/lmdbxx/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/UNLICENSE -------------------------------------------------------------------------------- /vendors/lmdbxx/VERSION: -------------------------------------------------------------------------------- 1 | 0.9.14.1 2 | -------------------------------------------------------------------------------- /vendors/lmdbxx/check.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/check.cc -------------------------------------------------------------------------------- /vendors/lmdbxx/etc/fink/lmdb++.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/etc/fink/lmdb++.info -------------------------------------------------------------------------------- /vendors/lmdbxx/etc/fink/lmdb.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/etc/fink/lmdb.info -------------------------------------------------------------------------------- /vendors/lmdbxx/etc/fink/lmdb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/etc/fink/lmdb.patch -------------------------------------------------------------------------------- /vendors/lmdbxx/etc/portage/overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/etc/portage/overlay.xml -------------------------------------------------------------------------------- /vendors/lmdbxx/etc/portage/profiles/repo_name: -------------------------------------------------------------------------------- 1 | lmdbxx 2 | -------------------------------------------------------------------------------- /vendors/lmdbxx/example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/example.cc -------------------------------------------------------------------------------- /vendors/lmdbxx/lmdb++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittinunf/Cookpit/HEAD/vendors/lmdbxx/lmdb++.h --------------------------------------------------------------------------------