summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
author Abhishek Pandit-Subedi <abhishekpandit@chromium.org> 2021-03-15 13:54:19 -0700
committer Abhishek Pandit-Subedi <abhishekpandit@google.com> 2021-05-03 22:29:53 +0000
commit83f3ba1f6d4a35ba3e3212a1c3d93763d675a12d (patch)
tree4ac13ae5576eb4194aa76c327f2d691e96803c32 /BUILD.gn
parentd1895cee1b8f3c2499d5bee6526ed70087d6ea34 (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.gn3
1 files changed, 2 insertions, 1 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 8b563f8d0b..56ed7d85d4 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -32,7 +32,8 @@ group("all") {
group("bluetooth") {
deps = [
"//bt/main:bluetooth",
- "//bt/service:bluetoothtbd",
+ "//bt/main:bluetooth-static",
+ #"//bt/service:bluetoothtbd",
]
}