blob: 2eb474187c6445fe3cfe877cf74e202005f2c960 [file] [log] [blame]
Colin Cross068e0fe2016-12-13 15:23:47 -08001// Copyright 2016 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -070015package android
Colin Cross068e0fe2016-12-13 15:23:47 -080016
17import (
Jingwen Chen30f5aaa2020-11-19 05:38:02 -050018 "android/soong/bazel"
Colin Crossd91d7ac2017-09-12 22:52:12 -070019 "strings"
Colin Cross068e0fe2016-12-13 15:23:47 -080020)
21
22func init() {
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -070023 RegisterModuleType("filegroup", FileGroupFactory)
Jingwen Chena42d6412021-01-26 21:57:27 -050024 RegisterBp2BuildMutator("filegroup", FilegroupBp2Build)
Jingwen Chen32b4ece2021-01-21 03:20:18 -050025}
26
Paul Duffin35816122021-02-24 01:49:52 +000027var PrepareForTestWithFilegroup = FixtureRegisterWithContext(func(ctx RegistrationContext) {
28 ctx.RegisterModuleType("filegroup", FileGroupFactory)
29})
30
Jingwen Chen32b4ece2021-01-21 03:20:18 -050031// https://docs.bazel.build/versions/master/be/general.html#filegroup
32type bazelFilegroupAttributes struct {
Liz Kammer356f7d42021-01-26 09:18:53 -050033 Srcs bazel.LabelList
Jingwen Chen32b4ece2021-01-21 03:20:18 -050034}
35
36type bazelFilegroup struct {
37 BazelTargetModuleBase
38 bazelFilegroupAttributes
39}
40
41func BazelFileGroupFactory() Module {
42 module := &bazelFilegroup{}
43 module.AddProperties(&module.bazelFilegroupAttributes)
44 InitBazelTargetModule(module)
45 return module
46}
47
48func (bfg *bazelFilegroup) Name() string {
49 return bfg.BaseModuleName()
50}
51
52func (bfg *bazelFilegroup) GenerateAndroidBuildActions(ctx ModuleContext) {}
53
Jingwen Chena42d6412021-01-26 21:57:27 -050054func FilegroupBp2Build(ctx TopDownMutatorContext) {
Liz Kammer356f7d42021-01-26 09:18:53 -050055 fg, ok := ctx.Module().(*fileGroup)
Liz Kammerea6666f2021-02-17 10:17:28 -050056 if !ok || !fg.ConvertWithBp2build() {
Liz Kammer356f7d42021-01-26 09:18:53 -050057 return
Jingwen Chen32b4ece2021-01-21 03:20:18 -050058 }
Jingwen Chen77e8b7b2021-02-05 03:03:24 -050059
Jingwen Chen1fd14692021-02-05 03:01:50 -050060 attrs := &bazelFilegroupAttributes{
Liz Kammer356f7d42021-01-26 09:18:53 -050061 Srcs: BazelLabelForModuleSrcExcludes(ctx, fg.properties.Srcs, fg.properties.Exclude_srcs),
Jingwen Chen1fd14692021-02-05 03:01:50 -050062 }
63
Liz Kammerfc46bc12021-02-19 11:06:17 -050064 props := bazel.BazelTargetModuleProperties{Rule_class: "filegroup"}
Jingwen Chen1fd14692021-02-05 03:01:50 -050065
Liz Kammerfc46bc12021-02-19 11:06:17 -050066 ctx.CreateBazelTargetModule(BazelFileGroupFactory, fg.Name(), props, attrs)
Colin Cross068e0fe2016-12-13 15:23:47 -080067}
68
69type fileGroupProperties struct {
70 // srcs lists files that will be included in this filegroup
Colin Cross27b922f2019-03-04 22:35:41 -080071 Srcs []string `android:"path"`
Colin Cross068e0fe2016-12-13 15:23:47 -080072
Colin Cross27b922f2019-03-04 22:35:41 -080073 Exclude_srcs []string `android:"path"`
Colin Crossfaeb7aa2017-02-01 14:12:44 -080074
75 // The base path to the files. May be used by other modules to determine which portion
76 // of the path to use. For example, when a filegroup is used as data in a cc_test rule,
77 // the base path is stripped off the path and the remaining path is used as the
78 // installation directory.
Nan Zhangea568a42017-11-08 21:20:04 -080079 Path *string
Colin Crossd91d7ac2017-09-12 22:52:12 -070080
81 // Create a make variable with the specified name that contains the list of files in the
82 // filegroup, relative to the root of the source tree.
Nan Zhangea568a42017-11-08 21:20:04 -080083 Export_to_make_var *string
Colin Cross068e0fe2016-12-13 15:23:47 -080084}
85
86type fileGroup struct {
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -070087 ModuleBase
Liz Kammerea6666f2021-02-17 10:17:28 -050088 BazelModuleBase
Colin Cross068e0fe2016-12-13 15:23:47 -080089 properties fileGroupProperties
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -070090 srcs Paths
Colin Cross068e0fe2016-12-13 15:23:47 -080091}
92
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -070093var _ SourceFileProducer = (*fileGroup)(nil)
Colin Cross068e0fe2016-12-13 15:23:47 -080094
Patrice Arruda8958a942019-03-12 10:06:00 -070095// filegroup contains a list of files that are referenced by other modules
96// properties (such as "srcs") using the syntax ":<name>". filegroup are
97// also be used to export files across package boundaries.
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -070098func FileGroupFactory() Module {
Colin Cross068e0fe2016-12-13 15:23:47 -080099 module := &fileGroup{}
Colin Cross36242852017-06-23 15:06:31 -0700100 module.AddProperties(&module.properties)
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -0700101 InitAndroidModule(module)
Liz Kammerea6666f2021-02-17 10:17:28 -0500102 InitBazelModule(module)
Colin Cross36242852017-06-23 15:06:31 -0700103 return module
Colin Cross068e0fe2016-12-13 15:23:47 -0800104}
105
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -0700106func (fg *fileGroup) GenerateAndroidBuildActions(ctx ModuleContext) {
Colin Cross8a497952019-03-05 22:25:09 -0800107 fg.srcs = PathsForModuleSrcExcludes(ctx, fg.properties.Srcs, fg.properties.Exclude_srcs)
Colin Cross2fafa3e2019-03-05 12:39:51 -0800108
109 if fg.properties.Path != nil {
110 fg.srcs = PathsWithModuleSrcSubDir(ctx, fg.srcs, String(fg.properties.Path))
111 }
Colin Cross068e0fe2016-12-13 15:23:47 -0800112}
113
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -0700114func (fg *fileGroup) Srcs() Paths {
115 return append(Paths{}, fg.srcs...)
Colin Cross068e0fe2016-12-13 15:23:47 -0800116}
Colin Crossd91d7ac2017-09-12 22:52:12 -0700117
Dan Willemsen6a6478d2020-07-17 19:28:53 -0700118func (fg *fileGroup) MakeVars(ctx MakeVarsModuleContext) {
119 if makeVar := String(fg.properties.Export_to_make_var); makeVar != "" {
120 ctx.StrictRaw(makeVar, strings.Join(fg.srcs.Strings(), " "))
Colin Crossd91d7ac2017-09-12 22:52:12 -0700121 }
122}