forked from stackb/rules_proto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proto_closure_js_library.go
53 lines (44 loc) · 1.54 KB
/
proto_closure_js_library.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package rules_closure
import (
"github.com/bazelbuild/bazel-gazelle/rule"
"github.com/stackb/rules_proto/pkg/protoc"
)
const (
ProtoClosurejsLibraryRuleName = "proto_closure_js_library"
ProtoClosureJsLibraryRuleSuffix = "_closure_js_library"
)
func init() {
protoc.Rules().MustRegisterRule("stackb:rules_proto:proto_closure_js_library", &protoClosureJsLibrary{})
}
// protoClosureJsLibrary implements LanguageRule for the
// 'proto_closure_js_library' rule.
type protoClosureJsLibrary struct{}
// Name implements part of the LanguageRule interface.
func (s *protoClosureJsLibrary) Name() string {
return ProtoClosurejsLibraryRuleName
}
// KindInfo implements part of the LanguageRule interface.
func (s *protoClosureJsLibrary) KindInfo() rule.KindInfo {
return closureJsLibraryKindInfo
}
// LoadInfo implements part of the LanguageRule interface.
func (s *protoClosureJsLibrary) LoadInfo() rule.LoadInfo {
return rule.LoadInfo{
Name: "@build_stack_rules_proto//rules/closure:proto_closure_js_library.bzl",
Symbols: []string{ProtoClosurejsLibraryRuleName},
}
}
// ProvideRule implements part of the LanguageRule interface.
func (s *protoClosureJsLibrary) ProvideRule(cfg *protoc.LanguageRuleConfig, pc *protoc.ProtocConfiguration) protoc.RuleProvider {
outputs := pc.GetPluginOutputs("builtin:js:closure")
if len(outputs) == 0 {
return nil
}
return &ClosureJsLibrary{
KindName: ProtoClosurejsLibraryRuleName,
RuleNameSuffix: ProtoClosureJsLibraryRuleSuffix,
Outputs: outputs,
RuleConfig: cfg,
Config: pc,
}
}