summaryrefslogtreecommitdiffstats
path: root/bootloader_message/Android.bp
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-05-21 09:37:56 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-05-21 09:37:56 +0200
commitff352784932fc699a4954f1276b3b62b41450dc6 (patch)
treef6b0e942d094d038558c69f010b11cadf8d62c06 /bootloader_message/Android.bp
parentrelease-request-0520ccd3-e696-4d2d-993b-af952b2dd6bd-for-git_oc-mr1-release-4022446 snap-temp-L69600000065417142 (diff)
parentMerge "Print SHA1 of the patch if bsdiff fails with data error" am: 1f9808bd48 am: 8f68accc9d am: 1562f41348 (diff)
downloadandroid_bootable_recovery-ff352784932fc699a4954f1276b3b62b41450dc6.tar
android_bootable_recovery-ff352784932fc699a4954f1276b3b62b41450dc6.tar.gz
android_bootable_recovery-ff352784932fc699a4954f1276b3b62b41450dc6.tar.bz2
android_bootable_recovery-ff352784932fc699a4954f1276b3b62b41450dc6.tar.lz
android_bootable_recovery-ff352784932fc699a4954f1276b3b62b41450dc6.tar.xz
android_bootable_recovery-ff352784932fc699a4954f1276b3b62b41450dc6.tar.zst
android_bootable_recovery-ff352784932fc699a4954f1276b3b62b41450dc6.zip
Diffstat (limited to 'bootloader_message/Android.bp')
-rw-r--r--bootloader_message/Android.bp26
1 files changed, 26 insertions, 0 deletions
diff --git a/bootloader_message/Android.bp b/bootloader_message/Android.bp
new file mode 100644
index 000000000..f0d76e718
--- /dev/null
+++ b/bootloader_message/Android.bp
@@ -0,0 +1,26 @@
+//
+// Copyright (C) 2017 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_library_static {
+ name: "libbootloader_message",
+ srcs: ["bootloader_message.cpp"],
+ cppflags: ["-Werror"],
+ static_libs: [
+ "libbase",
+ "libfs_mgr",
+ ],
+ export_include_dirs: ["include"],
+}