From 03f5253020e1c4a28db1605eceee12e422426221 Mon Sep 17 00:00:00 2001 From: Simran Basi Date: Thu, 6 Sep 2018 12:23:11 -0700 Subject: [PATCH] Create an artifact to output module-info and OWNERS files in source code Bug: 114242886 Test: make dist -j owners make dist -j module-info Change-Id: I6d00928c25e3213a5563e64806e0c04530161581 --- core/tasks/module-info.mk | 1 + core/tasks/owners.mk | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 core/tasks/owners.mk diff --git a/core/tasks/module-info.mk b/core/tasks/module-info.mk index 3b4a98fd3f..9eb3ab3299 100644 --- a/core/tasks/module-info.mk +++ b/core/tasks/module-info.mk @@ -28,3 +28,4 @@ ifndef ONE_SHOT_MAKEFILE files: $(MODULE_INFO_JSON) endif +$(call dist-for-goals, general-tests, $(MODULE_INFO_JSON)) diff --git a/core/tasks/owners.mk b/core/tasks/owners.mk new file mode 100644 index 0000000000..6f32aaf1d0 --- /dev/null +++ b/core/tasks/owners.mk @@ -0,0 +1,33 @@ +# Copyright (C) 2018 The Android Open Source Project +# +# 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. +# Create an artifact to include TEST_MAPPING files in source tree. + +.PHONY: owners + +intermediates := $(call intermediates-dir-for,PACKAGING,owners) +owners_zip := $(intermediates)/owners.zip +owners_list := $(OUT_DIR)/.module_paths/OWNERS.list +owners := $(file <$(owners_list)) +$(owners_zip) : PRIVATE_owners := $(subst $(newline),\n,$(owners)) + +$(owners_zip) : $(owners) $(SOONG_ZIP) + @echo "Building artifact to include OWNERS files." + rm -rf $@ + echo -e "$(PRIVATE_owners)" > $@.list + $(SOONG_ZIP) -o $@ -C . -l $@.list + rm -f $@.list + +owners : $(owners_zip) + +$(call dist-for-goals, general-tests, $(owners_zip))