summaryrefslogtreecommitdiffstats
path: root/misc_writer/Android.bp
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2019-05-26 01:09:51 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2019-05-26 01:09:51 +0200
commit07f68f8eb504de9d8814d407ddba83ea8656ff69 (patch)
tree403b5eec1283e63e0dd59b4e7008fce76744af4a /misc_writer/Android.bp
parentSnap for 5534160 from 9681eef5ff179980ae0d1c5437894f34ea7cfe87 to qt-release (diff)
parentAdd misc_writer. (diff)
downloadandroid_bootable_recovery-07f68f8eb504de9d8814d407ddba83ea8656ff69.tar
android_bootable_recovery-07f68f8eb504de9d8814d407ddba83ea8656ff69.tar.gz
android_bootable_recovery-07f68f8eb504de9d8814d407ddba83ea8656ff69.tar.bz2
android_bootable_recovery-07f68f8eb504de9d8814d407ddba83ea8656ff69.tar.lz
android_bootable_recovery-07f68f8eb504de9d8814d407ddba83ea8656ff69.tar.xz
android_bootable_recovery-07f68f8eb504de9d8814d407ddba83ea8656ff69.tar.zst
android_bootable_recovery-07f68f8eb504de9d8814d407ddba83ea8656ff69.zip
Diffstat (limited to 'misc_writer/Android.bp')
-rw-r--r--misc_writer/Android.bp40
1 files changed, 40 insertions, 0 deletions
diff --git a/misc_writer/Android.bp b/misc_writer/Android.bp
new file mode 100644
index 000000000..567143c79
--- /dev/null
+++ b/misc_writer/Android.bp
@@ -0,0 +1,40 @@
+//
+// Copyright (C) 2019 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.
+//
+
+cc_binary {
+ name: "misc_writer",
+ vendor: true,
+
+ srcs: [
+ "misc_writer.cpp",
+ ],
+
+ cpp_std: "experimental",
+
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
+
+ shared_libs: [
+ "libbase",
+ ],
+
+ static_libs: [
+ "libbootloader_message_vendor",
+ "libfstab",
+ ],
+}