blob: 648bc9a7314c6d8dbbd1ca6b58b47d6449a42e15 [file] [log] [blame]
Bob Badoura99ac622021-10-25 16:21:00 -07001//
2// Copyright (C) 2021 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16package {
17 default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20bootstrap_go_package {
21 name: "compliance-module",
22 srcs: [
23 "actionset.go",
24 "condition.go",
25 "conditionset.go",
26 "graph.go",
27 "readgraph.go",
28 "resolution.go",
29 "resolutionset.go",
30 ],
31 testSrcs: [
32 "condition_test.go",
33 "conditionset_test.go",
34 "readgraph_test.go",
35 "resolutionset_test.go",
36 "test_util.go",
37 ],
38 deps: [
39 "golang-protobuf-proto",
40 "golang-protobuf-encoding-prototext",
41 "license_metadata_proto",
42 ],
43 pkgPath: "compliance",
44}