diff options
author | 2023-11-15 10:30:50 +0000 | |
---|---|---|
committer | 2023-11-15 10:30:50 +0000 | |
commit | d97bf3646914c20e4e7602c7f87792e89ac29ce3 (patch) | |
tree | e9c1806faa62580caa58c6592ac6dd0179ef2460 /testing/init.go | |
parent | 5876a78543c010c39cb5cac291b607b06a72d44b (diff) | |
parent | 9b59352a82b099daf032fced3e3997aab652f3d2 (diff) |
Merge "Add proto for Test ownership metadata." into main
Diffstat (limited to 'testing/init.go')
-rw-r--r-- | testing/init.go | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/init.go b/testing/init.go new file mode 100644 index 000000000..8820a6063 --- /dev/null +++ b/testing/init.go @@ -0,0 +1,27 @@ +// Copyright 2022 Google Inc. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package testing + +import ( + "android/soong/android" +) + +func init() { + RegisterBuildComponents(android.InitRegistrationContext) +} + +func RegisterBuildComponents(ctx android.RegistrationContext) { + ctx.RegisterModuleType("test_spec", TestSpecFactory) +} |