Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Unified Diff: device/bluetooth/BUILD.gn

Issue 2737343003: bluetooth: Add FakeBluetooth interface (Closed)
Patch Set: Add all the READMEs! Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: device/bluetooth/BUILD.gn
diff --git a/device/bluetooth/BUILD.gn b/device/bluetooth/BUILD.gn
index ea00f55614e81c7eaa6b58793d56655a688b7dc0..8ec172a67731430d08c9fc08934391335a390e45 100644
--- a/device/bluetooth/BUILD.gn
+++ b/device/bluetooth/BUILD.gn
@@ -41,6 +41,32 @@ source_set("mojo") {
]
}
+source_set("fake_bluetooth") {
+ sources = [
+ "test/fake_bluetooth.cc",
+ "test/fake_bluetooth.h",
+ ]
+
+ deps = [
+ ":bluetooth",
+ "//device/bluetooth/public/interfaces:fake_bluetooth_interfaces",
+ "//mojo/public/cpp/bindings",
+ ]
+}
+
+source_set("fake_bluetooth") {
scheib 2017/04/12 18:56:47 There's now a duplicate source_set fake_bluetooth
ortuno 2017/04/13 01:12:47 wat... I guess "git cl patch" messed up at some po
+ sources = [
+ "test/fake_bluetooth.cc",
+ "test/fake_bluetooth.h",
+ ]
+
+ deps = [
+ ":bluetooth",
+ "//device/bluetooth/public/interfaces:fake_bluetooth_interfaces",
+ "//mojo/public/cpp/bindings",
+ ]
+}
+
component("bluetooth") {
sources = [
"android/bluetooth_jni_registrar.cc",

Powered by Google App Engine
This is Rietveld 408576698