summaryrefslogtreecommitdiff
path: root/su
diff options
context:
space:
mode:
authorTrevor Radcliffe <tradical@google.com>2021-10-07 17:41:11 +0000
committerTrevor Radcliffe <tradical@google.com>2021-10-18 16:51:19 +0000
commit32b779eb50cb25137c12f46052efa5622000d2e3 (patch)
treeb73d8c0f1e7de4e742ad715ce84fe8c002f67f0e /su
parentd86310b250756020a782465fc2be69ee134e1a0b (diff)
downloadextras-32b779eb50cb25137c12f46052efa5622000d2e3.tar.gz
Migrate su to Soong
Convert system/extras/su/Android.mk to Android.bp Fixes: 202384734 Test: cts Test: Treehugger Change-Id: I6d7e64ee1607061b0e7bcb0b71482401eaba2758
Diffstat (limited to 'su')
-rw-r--r--su/Android.bp43
-rw-r--r--su/Android.mk17
2 files changed, 43 insertions, 17 deletions
diff --git a/su/Android.bp b/su/Android.bp
new file mode 100644
index 00000000..bf4f6e30
--- /dev/null
+++ b/su/Android.bp
@@ -0,0 +1,43 @@
+//
+// Copyright (C) 2021 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.
+//
+
+package {
+ default_applicable_licenses: ["system_extras_su_license"],
+}
+
+license {
+ name: "system_extras_su_license",
+ visibility: [":__subpackages__"],
+ license_kinds: [
+ "SPDX-license-identifier-Apache-2.0",
+ ],
+ license_text: [
+ "NOTICE",
+ ],
+}
+
+cc_binary {
+ name: "su",
+
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
+
+ srcs: ["su.cpp"],
+
+ header_libs: ["libcutils_headers"],
+}
diff --git a/su/Android.mk b/su/Android.mk
deleted file mode 100644
index 18493992..00000000
--- a/su/Android.mk
+++ /dev/null
@@ -1,17 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_CFLAGS := -Wall -Werror
-
-LOCAL_SRC_FILES:= su.cpp
-
-LOCAL_MODULE:= su
-LOCAL_LICENSE_KINDS:= SPDX-license-identifier-Apache-2.0
-LOCAL_LICENSE_CONDITIONS:= notice
-LOCAL_NOTICE_FILE:= $(LOCAL_PATH)/NOTICE
-
-LOCAL_HEADER_LIBRARIES := libcutils_headers
-
-LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
-
-include $(BUILD_EXECUTABLE)