diff options
author | Craig Tiller <ctiller@google.com> | 2017-09-07 15:49:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-07 15:49:44 -0700 |
commit | 41630a29507c8dd5b6110f0397b346b7feab442b (patch) | |
tree | 3890b675262fd5f0cf39feed9330e606d266c70b /grpc.gyp | |
parent | 4fb50865e0606bdcd67f3b7e5d5faa22d4b523e8 (diff) | |
parent | 0880cadc6f3852ee2caa300ca742c176336f89e1 (diff) |
Merge pull request #12334 from ctiller/stats_histo
Stats histograms
Diffstat (limited to 'grpc.gyp')
-rw-r--r-- | grpc.gyp | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1223,6 +1223,17 @@ ], }, { + 'target_name': 'grpc++_core_stats', + 'type': 'static_library', + 'dependencies': [ + 'grpc++', + ], + 'sources': [ + 'src/proto/grpc/core/stats.proto', + 'src/cpp/util/core_stats.cc', + ], + }, + { 'target_name': 'grpc++_error_details', 'type': 'static_library', 'dependencies': [ @@ -1504,6 +1515,7 @@ 'dependencies': [ 'grpc_test_util', 'grpc++_test_util', + 'grpc++_core_stats', 'grpc++', 'grpc', ], |