xref: /aosp_15_r20/build/soong/android/shared_properties.go (revision 333d2b3687b3a337dbcca9d65000bca186795e39)
1// Copyright 2024 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
15package android
16
17// For storing user-supplied properties about source code on a module to be queried later.
18type SourceProperties struct {
19	// Indicates that the module and its source code are only used in tests, not
20	// production code. Used by coverage reports and potentially other tools.
21	Test_only *bool
22	// Used internally to write if this is a top level test target.
23	// i.e. something that can be run directly or through tradefed as a test.
24	// `java_library` would be false, `java_test` would be true.
25	Top_level_test_target bool `blueprint:"mutated"`
26}
27