summaryrefslogtreecommitdiff
path: root/tests/libufdt_verify/Android.bp
diff options
context:
space:
mode:
authorHridya Valsaraju <hridya@google.com>2017-12-05 17:31:09 -0800
committerHridya Valsaraju <hridya@google.com>2018-01-23 17:01:09 -0800
commit5168cab4cb068dc964e6354167bc857a0e948ff7 (patch)
tree55c2dfc7c0a9b7479f1f4c3bf63c98449546b36e /tests/libufdt_verify/Android.bp
parent8aadca5e056037f5984fbe6033645e72685e5801 (diff)
downloadlibufdt-5168cab4cb068dc964e6354167bc857a0e948ff7.tar.gz
Create libufdt_verify
Exposes an API to verify if a device tree overlay has been correctly applied on an FDT. Bug: 67779848 Test: vts-tradefed run vts -m VtsVerifyDTBOTest Change-Id: I0606fd79784b8beed1d912129dfbc9b7634e7708
Diffstat (limited to 'tests/libufdt_verify/Android.bp')
-rw-r--r--tests/libufdt_verify/Android.bp28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/libufdt_verify/Android.bp b/tests/libufdt_verify/Android.bp
new file mode 100644
index 0000000..bb07f79
--- /dev/null
+++ b/tests/libufdt_verify/Android.bp
@@ -0,0 +1,28 @@
+// 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.
+
+cc_library_static {
+ name: "libufdt_verify",
+ host_supported: true,
+ srcs: [
+ "ufdt_test_overlay.cpp",
+ ],
+ cflags: ["-Wall", "-Werror"],
+ export_include_dirs: ["include"],
+ static_libs: [
+ "libfdt",
+ "libufdt_sysdeps",
+ "libufdt",
+ ],
+}