summaryrefslogtreecommitdiffstats
path: root/otautil/Android.bp
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-05-17 10:06:39 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-05-17 10:06:39 +0200
commit126564f96251f3c8b06ac8a1f7ed63c783712c2b (patch)
tree2eb0429757e82efd5eca487a6504e0fa81a53a4d /otautil/Android.bp
parentMerge "minui: Fix breakage in graphics_adf." am: 54da112277 am: d66f05b82c am: 4cc6889da8 (diff)
parentMerge "updater: Update the mkfs.f2fs argument to match f2fs-tools 1.8.0." am: 494d97fe6b am: 843ca31c4c am: 9539cdb3c0 (diff)
downloadandroid_bootable_recovery-126564f96251f3c8b06ac8a1f7ed63c783712c2b.tar
android_bootable_recovery-126564f96251f3c8b06ac8a1f7ed63c783712c2b.tar.gz
android_bootable_recovery-126564f96251f3c8b06ac8a1f7ed63c783712c2b.tar.bz2
android_bootable_recovery-126564f96251f3c8b06ac8a1f7ed63c783712c2b.tar.lz
android_bootable_recovery-126564f96251f3c8b06ac8a1f7ed63c783712c2b.tar.xz
android_bootable_recovery-126564f96251f3c8b06ac8a1f7ed63c783712c2b.tar.zst
android_bootable_recovery-126564f96251f3c8b06ac8a1f7ed63c783712c2b.zip
Diffstat (limited to 'otautil/Android.bp')
-rw-r--r--otautil/Android.bp34
1 files changed, 34 insertions, 0 deletions
diff --git a/otautil/Android.bp b/otautil/Android.bp
new file mode 100644
index 000000000..0b2314374
--- /dev/null
+++ b/otautil/Android.bp
@@ -0,0 +1,34 @@
+// Copyright (C) 2016 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: "libotautil",
+
+ srcs: [
+ "SysUtil.cpp",
+ "DirUtil.cpp",
+ "ZipUtil.cpp",
+ "ThermalUtil.cpp",
+ ],
+
+ static_libs: [
+ "libselinux",
+ "libbase",
+ ],
+
+ cflags: [
+ "-Werror",
+ "-Wall",
+ ],
+}