Merge "rust_grpcio well known types support, default deps"
This commit is contained in:
5
cc/cc.go
5
cc/cc.go
@@ -592,6 +592,11 @@ func IsStaticDepTag(depTag blueprint.DependencyTag) bool {
|
||||
return ok && ccLibDepTag.static()
|
||||
}
|
||||
|
||||
func IsHeaderDepTag(depTag blueprint.DependencyTag) bool {
|
||||
ccLibDepTag, ok := depTag.(libraryDependencyTag)
|
||||
return ok && ccLibDepTag.header()
|
||||
}
|
||||
|
||||
func IsRuntimeDepTag(depTag blueprint.DependencyTag) bool {
|
||||
ccDepTag, ok := depTag.(dependencyTag)
|
||||
return ok && ccDepTag == runtimeDepTag
|
||||
|
Reference in New Issue
Block a user