jianglin 1f660605fd rm clang-format file | před 3 roky | |
---|---|---|
.. | ||
audio_a2dp_hw | před 4 roky | |
audio_bluetooth_hw | před 4 roky | |
audio_hal_interface | před 4 roky | |
audio_hearing_aid_hw | před 4 roky | |
binder | před 4 roky | |
bta | před 4 roky | |
btcore | před 4 roky | |
btif | před 4 roky | |
build | před 4 roky | |
common | před 4 roky | |
conf | před 4 roky | |
device | před 4 roky | |
doc | před 4 roky | |
embdrv | před 4 roky | |
gd | před 3 roky | |
hci | před 4 roky | |
include | před 4 roky | |
internal_include | před 4 roky | |
linux_include | před 4 roky | |
main | před 4 roky | |
osi | před 4 roky | |
packet | před 4 roky | |
profile | před 4 roky | |
proto | před 4 roky | |
service | před 4 roky | |
stack | před 4 roky | |
test | před 4 roky | |
tools | před 4 roky | |
types | před 4 roky | |
udrv | před 4 roky | |
utils | před 4 roky | |
vendor_libs | před 4 roky | |
vnd | před 4 roky | |
.gitignore | před 4 roky | |
.gn | před 4 roky | |
Android.bp | před 4 roky | |
AndroidTestTemplate.xml | před 4 roky | |
BUILD.gn | před 4 roky | |
CleanSpec.mk | před 4 roky | |
EventLogTags.logtags | před 4 roky | |
MODULE_LICENSE_APACHE2 | před 4 roky | |
NOTICE | před 4 roky | |
OWNERS | před 4 roky | |
PREUPLOAD.cfg | před 4 roky | |
README.md | před 4 roky | |
TEST_MAPPING | před 4 roky |
Just build AOSP - Fluoride is there by default.
Instructions for Ubuntu, tested on 14.04 with Clang 3.5.0 and 16.10 with Clang 3.8.0
mkdir ~/fluoride
cd ~/fluoride
git clone https://android.googlesource.com/platform/system/bt
Install dependencies (require sudo access):
cd ~/fluoride/bt
build/install_deps.sh
Then fetch third party dependencies:
cd ~/fluoride/bt
mkdir third_party
cd third_party
git clone https://github.com/google/googletest.git
git clone https://android.googlesource.com/platform/external/aac
git clone https://android.googlesource.com/platform/external/libchrome
git clone https://android.googlesource.com/platform/external/libldac
git clone https://android.googlesource.com/platform/external/modp_b64
git clone https://android.googlesource.com/platform/external/tinyxml2
And third party dependencies of third party dependencies:
cd fluoride/bt/third_party/libchrome/base/third_party
mkdir valgrind
cd valgrind
curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/valgrind.h?format=TEXT | base64 -d > valgrind.h
curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/memcheck.h?format=TEXT | base64 -d > memcheck.h
NOTE: If system/bt is checked out under AOSP, then create symbolic links instead of downloading sources
cd system/bt
mkdir third_party
cd third_party
ln -s ../../../external/aac aac
ln -s ../../../external/libchrome libchrome
ln -s ../../../external/libldac libldac
ln -s ../../../external/modp_b64 modp_b64
ln -s ../../../external/tinyxml2 tinyxml2
ln -s ../../../external/googletest googletest
cd ~/fluoride/bt
gn gen out/Default
cd ~/fluoride/bt
ninja -C out/Default all
This 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
.
cd ~/fluoride/bt/out/Default
LD_LIBRARY_PATH=./ ./bluetoothtbd -create-ipc-socket=fluoride
Follows the Chromium project Eclipse Setup Instructions until "Optional: Building inside Eclipse" section (don't do that section, we will set it up differently)
Generate Eclipse settings:
cd system/bt
gn gen --ide=eclipse out/Default
In Eclipse, do File->Import->C/C++->C/C++ Project Settings, choose the XML location under system/bt/out/Default
Right click on the project. Go to Preferences->C/C++ Build->Builder Settings. Uncheck "Use default build command", but instead using "ninja -C out/Default"
Goto Behaviour tab, change clean command to "-t clean"