summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Moreland2017-11-07 15:21:40 -0600
committerandroid-build-merger2017-11-07 15:21:40 -0600
commit26013bf6aca79fdb10c745b74cfd6aab948ca20d (patch)
treedf4b2907117f403ff05b442cbafc694e2c07fe7b /bluetooth/1.0
parenteb4eba96c9547e3562bc8d8321471441658fb6f5 (diff)
parent72c720a4e368f77729d849b766f34f3609d877da (diff)
downloadplatform-hardware-interfaces-26013bf6aca79fdb10c745b74cfd6aab948ca20d.tar.gz
platform-hardware-interfaces-26013bf6aca79fdb10c745b74cfd6aab948ca20d.tar.xz
platform-hardware-interfaces-26013bf6aca79fdb10c745b74cfd6aab948ca20d.zip
Merge "Automatic mk -> bp." am: e5fd969f19
am: 72c720a4e3 Change-Id: Icfc8b46117e94461906806023852836a0ace3a55
Diffstat (limited to 'bluetooth/1.0')
-rw-r--r--bluetooth/1.0/default/Android.bp20
-rw-r--r--bluetooth/1.0/default/Android.mk39
2 files changed, 20 insertions, 39 deletions
diff --git a/bluetooth/1.0/default/Android.bp b/bluetooth/1.0/default/Android.bp
index 31a26414..63e75629 100644
--- a/bluetooth/1.0/default/Android.bp
+++ b/bluetooth/1.0/default/Android.bp
@@ -112,3 +112,23 @@ cc_test_host {
112 "liblog", 112 "liblog",
113 ], 113 ],
114} 114}
115
116cc_binary {
117 name: "android.hardware.bluetooth@1.0-service",
118 relative_install_path: "hw",
119 vendor: true,
120 init_rc: ["android.hardware.bluetooth@1.0-service.rc"],
121 srcs: ["service.cpp"],
122
123 shared_libs: [
124 "liblog",
125 "libcutils",
126 "libdl",
127 "libbase",
128 "libutils",
129 "libhardware",
130 "libhidlbase",
131 "libhidltransport",
132 "android.hardware.bluetooth@1.0",
133 ],
134}
diff --git a/bluetooth/1.0/default/Android.mk b/bluetooth/1.0/default/Android.mk
deleted file mode 100644
index 38294c77..00000000
--- a/bluetooth/1.0/default/Android.mk
+++ /dev/null
@@ -1,39 +0,0 @@
1#
2# Copyright (C) 2016 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16LOCAL_PATH:= $(call my-dir)
17
18include $(CLEAR_VARS)
19LOCAL_MODULE_RELATIVE_PATH := hw
20LOCAL_PROPRIETARY_MODULE := true
21LOCAL_MODULE := android.hardware.bluetooth@1.0-service
22LOCAL_INIT_RC := android.hardware.bluetooth@1.0-service.rc
23LOCAL_SRC_FILES := \
24 service.cpp
25
26LOCAL_SHARED_LIBRARIES := \
27 liblog \
28 libcutils \
29 libdl \
30 libbase \
31 libutils \
32 libhardware \
33
34LOCAL_SHARED_LIBRARIES += \
35 libhidlbase \
36 libhidltransport \
37 android.hardware.bluetooth@1.0 \
38
39include $(BUILD_EXECUTABLE)