diff options
author | 2021-03-15 13:54:19 -0700 | |
---|---|---|
committer | 2021-05-03 22:29:53 +0000 | |
commit | 83f3ba1f6d4a35ba3e3212a1c3d93763d675a12d (patch) | |
tree | 4ac13ae5576eb4194aa76c327f2d691e96803c32 /BUILD.gn | |
parent | d1895cee1b8f3c2499d5bee6526ed70087d6ea34 (diff) |
Add rust binaries to link with C++ staticlib
Rather than using C++ binaries to link with Rust staticlib, we do it the
other way around. This allows us to write our dbus frontend with Rust
instead.
Bug: 179821440
Tag: #floss
Test: atest --host bluetooth_test_gd
Change-Id: I63037e0aaea152a4855e0a49971c1b2f9c312ac5
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -32,7 +32,8 @@ group("all") { group("bluetooth") { deps = [ "//bt/main:bluetooth", - "//bt/service:bluetoothtbd", + "//bt/main:bluetooth-static", + #"//bt/service:bluetoothtbd", ] } |