• Home
Name Date Size #Lines LOC

..--

audio_a2dp_hw/07-May-2024-1,6461,130

bta/07-May-2024-81,07147,988

btcore/07-May-2024-2,4361,422

btif/07-May-2024-46,58230,630

build/07-May-2024-583526

conf/07-May-2024-18144

device/07-May-2024-1,422857

doc/07-May-2024-686584

embdrv/07-May-2024-10,3205,976

hci/07-May-2024-6,6264,226

include/07-May-2024-2,2031,210

main/07-May-2024-1,154732

osi/07-May-2024-10,9376,467

profile/07-May-2024-17584

service/07-May-2024-23,19015,275

stack/07-May-2024-144,04183,850

test/07-May-2024-1,141742

tools/07-May-2024-1,193903

udrv/07-May-2024-1,054604

utils/07-May-2024-285156

vendor_libs/07-May-2024-3,9492,349

vnd/07-May-2024-10528

.gitignoreD07-May-202427 43

.gnD07-May-2024888 2320

Android.mkD07-May-20241.5 KiB5432

BUILD.gnD07-May-20241.3 KiB4338

CleanSpec.mkD07-May-20242.4 KiB542

MODULE_LICENSE_APACHE2D07-May-20240

NOTICED07-May-202411.1 KiB203169

README.mdD07-May-20243.5 KiB12992

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 15.10 with GCC 5.2.1.
9
10### Install required libraries
11
12```sh
13sudo apt-get install libevent-dev
14```
15
16### Install build tools
17
18  - Install [ninja](https://ninja-build.org/) build system
19
20```sh
21sudo apt-get install ninja-build
22```
23
24or download binary from https://github.com/ninja-build/ninja/releases
25
26  - Install [gn](https://chromium.googlesource.com/chromium/src/tools/gn/) -  meta-build system that generates NinjaBuild files.
27
28Get sha1 of current version from [here](
29https://chromium.googlesource.com/chromium/buildtools/+/master/linux64/gn.sha1) and then download corresponding executable:
30
31```sh
32wget -O gn http://storage.googleapis.com/chromium-gn/<gn.sha1>
33```
34
35i.e. if sha1 is "3491f6687bd9f19946035700eb84ce3eed18c5fa" (value from 24 Feb 2016) do
36
37```sh
38wget -O gn http://storage.googleapis.com/chromium-gn/3491f6687bd9f19946035700eb84ce3eed18c5fa
39```
40
41Then make binary executable and put it on your PATH, i.e.:
42
43```sh
44chmod a+x ./gn
45sudo mv ./gn /usr/bin
46```
47
48### Download source
49
50```sh
51mkdir ~/fluoride
52cd ~/fluoride
53git clone https://android.googlesource.com/platform/system/bt
54```
55
56Then fetch third party dependencies:
57
58```sh
59cd ~/fluoride/bt
60mkdir third_party
61git clone https://github.com/google/googletest.git
62git clone https://android.googlesource.com/platform/external/libchrome
63git clone https://android.googlesource.com/platform/external/modp_b64
64git clone https://android.googlesource.com/platform/external/tinyxml2
65```
66
67And third party dependencies of third party dependencies:
68
69```sh
70cd fluoride/bt/third_party/libchrome/base/third_party
71mkdir valgrind
72cd valgrind
73curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/valgrind.h?format=TEXT | base64 -d > valgrind.h
74curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/memcheck.h?format=TEXT | base64 -d > memcheck.h
75```
76
77Fluoride currently has dependency on some internal Android projects, which also need to be downloaded. This will be removed in future:
78
79```sh
80cd ~/fluoride
81git clone https://android.googlesource.com/platform/system/core
82git clone https://android.googlesource.com/platform/hardware/libhardware
83git clone https://android.googlesource.com/platform/system/media
84```
85
86### Configure your build
87We need to configure some paths to make the build successful. Run:
88
89```sh
90cd ~/fluoride/bt
91gn args out/Default
92```
93
94This will prompt you to fill the contents of your "out/Default/args.gn" file. Make it look like below. Replace "/home/job" with path to your home directory, and don't use "~" in build arguments:
95
96```sh
97# Build arguments go here. Examples:
98#   is_component_build = true
99#   is_debug = false
100# See "gn args <out_dir> --list" for available build arguments.
101
102libhw_include_path = "/home/job/fluoride/libhardware/include"
103core_include_path = "/home/job/fluoride/core/include"
104audio_include_path = "/home/job/fluoride/media/audio/include"
105```
106
107Then generate your build files by calling
108
109```sh
110cd ~/fluoride/bt
111gn gen out/Default
112```
113
114### Build
115
116```sh
117cd ~/fluoride/bt
118ninja -C out/Default all
119```
120
121This will build all targets (the shared library, executables, tests, etc) and put them in out/Default. To build an individual target, replace "all" with the target of your choice, e.g. ```ninja -C out/Default net_test_osi```.
122
123### Run
124
125```sh
126cd ~/fluoride/bt/out/Default
127LD_LIBRARY_PATH=./ ./bluetoothtbd -create-ipc-socket=fluoride
128```
129