NameDateSize

..29-Aug-20174 KiB

.clang-format29-Aug-2017812

.gitignore29-Aug-201727

.gn29-Aug-2017888

Android.bp29-Aug-2017231

Android.mk29-Aug-201737

audio_a2dp_hw/29-Aug-20174 KiB

bta/29-Aug-20174 KiB

btcore/29-Aug-20174 KiB

btif/29-Aug-20174 KiB

build/29-Aug-20174 KiB

BUILD.gn29-Aug-20171.3 KiB

CleanSpec.mk29-Aug-20172.4 KiB

conf/29-Aug-20174 KiB

device/29-Aug-20174 KiB

doc/29-Aug-20174 KiB

embdrv/29-Aug-20174 KiB

EventLogTags.logtags29-Aug-20171.3 KiB

hci/29-Aug-20174 KiB

include/29-Aug-20174 KiB

main/29-Aug-20174 KiB

MODULE_LICENSE_APACHE229-Aug-20170

NOTICE29-Aug-201711.1 KiB

osi/29-Aug-20174 KiB

OWNERS29-Aug-2017239

PREUPLOAD.cfg29-Aug-201777

README.md29-Aug-20173 KiB

service/29-Aug-20174 KiB

stack/29-Aug-20174 KiB

test/29-Aug-20174 KiB

tools/29-Aug-20174 KiB

udrv/29-Aug-20174 KiB

utils/29-Aug-20174 KiB

vendor_libs/29-Aug-20174 KiB

vnd/29-Aug-20174 KiB

README.md

1# Fluoride Bluetooth stack
2
3## Building and running on AOSP
4Just build AOSP - Fluoride is there by default.
5
6## Building and running on Linux
7
8Instructions for Ubuntu, tested on 14.04 with Clang 3.5.0 and 16.10 with Clang
9 3.8.0
10
11### Download source
12
13```sh
14mkdir ~/fluoride
15cd ~/fluoride
16git clone https://android.googlesource.com/platform/system/bt
17```
18
19Install dependencies (require sudo access):
20
21```sh
22cd ~/fluoride/bt
23build/install_deps.sh
24```
25
26Then fetch third party dependencies:
27
28```sh
29cd ~/fluoride/bt
30mkdir third_party
31cd third_party
32git clone https://github.com/google/googletest.git
33git clone https://android.googlesource.com/platform/external/aac
34git clone https://android.googlesource.com/platform/external/libchrome
35git clone https://android.googlesource.com/platform/external/libldac
36git clone https://android.googlesource.com/platform/external/modp_b64
37git clone https://android.googlesource.com/platform/external/tinyxml2
38git clone https://android.googlesource.com/platform/hardware/libhardware
39```
40
41And third party dependencies of third party dependencies:
42
43```sh
44cd fluoride/bt/third_party/libchrome/base/third_party
45mkdir valgrind
46cd valgrind
47curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/valgrind.h?format=TEXT | base64 -d > valgrind.h
48curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/memcheck.h?format=TEXT | base64 -d > memcheck.h
49```
50
51NOTE: If system/bt is checked out under AOSP, then create symbolic links instead
52of downloading sources
53
54```
55cd system/bt
56mkdir third_party
57cd third_party
58ln -s ../../../external/aac aac
59ln -s ../../../external/libchrome libchrome
60ln -s ../../../external/libldac libldac
61ln -s ../../../external/modp_b64 modp_b64
62ln -s ../../../external/tinyxml2 tinyxml2
63ln -s ../../../hardware/libhardware libhardware
64ln -s ../../../external/googletest googletest
65```
66
67### Generate your build files
68
69```sh
70cd ~/fluoride/bt
71gn gen out/Default
72```
73
74### Build
75
76```sh
77cd ~/fluoride/bt
78ninja -C out/Default all
79```
80
81This will build all targets (the shared library, executables, tests, etc) and
82 put them in out/Default. To build an individual target, replace "all" with the
83 target of your choice, e.g. ```ninja -C out/Default net_test_osi```.
84
85### Run
86
87```sh
88cd ~/fluoride/bt/out/Default
89LD_LIBRARY_PATH=./ ./bluetoothtbd -create-ipc-socket=fluoride
90```
91
92### Eclipse IDE Support
93
941. Follows the Chromium project
95 [Eclipse Setup Instructions](https://chromium.googlesource.com/chromium/src/+/master/docs/linux_eclipse_dev.md)
96 until "Optional: Building inside Eclipse" section (don't do that section, we
97 will set it up differently)
98
992. Generate Eclipse settings:
100
101  ```sh
102  cd system/bt
103  gn gen --ide=eclipse out/Default
104  ```
105
1063. In Eclipse, do File->Import->C/C++->C/C++ Project Settings, choose the XML
107 location under system/bt/out/Default
108
1094. Right click on the project. Go to Preferences->C/C++ Build->Builder Settings.
110 Uncheck "Use default build command", but instead using "ninja -C out/Default"
111
1125. Goto Behaviour tab, change clean command to "-t clean"
113
114