Create Stackdriver module and inject it into backend module

This adds Stackdriver as a DI module into the registry codebase. This is a
necessary prerequisite for using Stackdriver based monitoring. For now, I'm
only adding it to the backend module as it will be more work to add it to the
frontend module.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=126730925
This commit is contained in:
shikhman 2016-07-06 13:24:20 -07:00 committed by Ben McIlwain
parent 9fcb8984ad
commit aa1b5229a0
5 changed files with 101 additions and 24 deletions

11
google/monitoring/BUILD Normal file
View file

@ -0,0 +1,11 @@
package(default_visibility = ["//visibility:public"])
java_library(
name = "monitoring_java_lib",
exports = [
"@google_api_services_monitoring//jar",
],
runtime_deps = [
"@google_api_client//jar",
],
)