Drop the gcov support shims. (#336)

4 files changed
tree: b77072c848490b7e739c1c268d16e93f86b070b4
  1. .github/
  2. AppKit/
  3. bazel_support/
  4. DebugUtils/
  5. Foundation/
  6. GTM.xcodeproj/
  7. GTMiPhone.xcodeproj/
  8. iPhone/
  9. UnitTesting/
  10. XcodeConfig/
  11. .gitignore
  12. BUILD
  13. BuildingAndUsing.txt
  14. CONTRIBUTING.md
  15. GoogleToolboxForMac.podspec
  16. GTM-Info.plist
  17. GTMDefines.h
  18. GTMiPhone-Info.plist
  19. LICENSE
  20. README.md
  21. UnitTest-Info.plist
  22. WORKSPACE
README.md

GTM: Google Toolbox for Mac

Project site https://github.com/google/google-toolbox-for-mac
Discussion group http://groups.google.com/group/google-toolbox-for-mac

Google Toolbox for Mac

A collection of source from different Google projects that may be of use to developers working other iOS or OS X projects.

If you find a problem/bug or want a new feature to be included in the Google Toolbox for Mac, please join the discussion group or submit an issue.

Bazel Support

Google Toolbox for Mac can be consumed via Bazel, to do so add the following to your WORKSPACE File:

GTM_GIT_SHA = "SOME_SHA"
http_archive(
    name = "google_toolbox_for_mac",
    urls = [
        "https://github.com/google/google-toolbox-for-mac/archive/%s.zip" % GTM_GIT_SHA
    ],
    strip_prefix = "google-toolbox-for-mac-%s" % GTM_GIT_SHA
)

load(
    "@google_toolbox_for_mac//bazel_support:repositories.bzl",
    "google_toolbox_for_mac_rules_dependencies",
)

google_toolbox_for_mac_rules_dependencies()