• Home
Name Date Size #Lines LOC

..--

audio_a2dp_hw/03-May-2024-2,2201,571

bta/03-May-2024-74,67542,917

btcore/03-May-2024-2,1761,308

btif/03-May-2024-43,29927,509

build/03-May-2024-1,2011,061

conf/03-May-2024-17941

device/03-May-2024-1,6521,083

doc/03-May-2024-788619

embdrv/03-May-2024-10,6386,286

hci/03-May-2024-4,6292,856

include/03-May-2024-2,4471,492

main/03-May-2024-1,050644

osi/03-May-2024-11,3807,039

service/03-May-2024-21,30113,276

stack/03-May-2024-155,52889,228

test/03-May-2024-2,0081,358

tools/03-May-2024-3,6942,736

types/03-May-2024-375255

udrv/03-May-2024-948545

utils/03-May-2024-241134

vendor_libs/03-May-2024-8,3265,748

vnd/03-May-2024-7716

.clang-formatD03-May-2024812 2522

.gitignoreD03-May-202427 43

.gnD03-May-2024888 2320

Android.bpD03-May-2024257 2120

Android.mkD03-May-202437 21

BUILD.gnD03-May-20241.4 KiB4943

CleanSpec.mkD03-May-20242.4 KiB542

EventLogTags.logtagsD03-May-20241.3 KiB3937

MODULE_LICENSE_APACHE2D03-May-20240

NOTICED03-May-202411.1 KiB203169

OWNERSD03-May-2024239 1411

PREUPLOAD.cfgD03-May-202477 74

README.mdD03-May-20243 KiB11485

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