aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan Chien <loganchien@google.com>2018-02-27 15:57:26 +0800
committerLogan Chien <loganchien@google.com>2018-02-27 16:09:20 +0800
commit773135272c86740714ede852a32ae9baa7d73254 (patch)
treeb4a6183a897fd07727c7cd50fad4c5d954fc5a47
parent0423b367f5e1e2f864b421006eb85949c29d7ed3 (diff)
downloadlibese-773135272c86740714ede852a32ae9baa7d73254.tar.gz
This commit replaces `=` with `:`, which is more idiomatic. Test: aosp_sailfish-userdebug builds Change-Id: Iafd87cb0a4b98083531a7fa3155ec23f7ca5360d
-rw-r--r--esed/Android.bp2
-rw-r--r--libapdu/Android.bp2
2 files changed, 2 insertions, 2 deletions
diff --git a/esed/Android.bp b/esed/Android.bp
index f746f38..8570376 100644
--- a/esed/Android.bp
+++ b/esed/Android.bp
@@ -37,7 +37,7 @@ cc_binary {
"esed.cpp",
"Weaver.cpp",
],
- init_rc = ["esed.rc"],
+ init_rc: ["esed.rc"],
defaults: ["esed_defaults"],
shared_libs: [
"android.hardware.weaver@1.0",
diff --git a/libapdu/Android.bp b/libapdu/Android.bp
index f427f4c..037f46d 100644
--- a/libapdu/Android.bp
+++ b/libapdu/Android.bp
@@ -33,5 +33,5 @@ cc_library_static {
srcs: [
"apdu.cpp",
],
- export_include_dirs = ["include"],
+ export_include_dirs: ["include"],
}