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

Unified Diff: content/shell/BUILD.gn

Issue 1815483003: bluetooth: Create Mojo equivalent of SetBluetoothMockDataSet (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-mojo
Patch Set: Add gyp Created 4 years, 9 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: content/shell/BUILD.gn
diff --git a/content/shell/BUILD.gn b/content/shell/BUILD.gn
index 9ceb8eb04d5bc62ce203b4d6a1e39d9cf1cae530..881f3eb89e6a30b8c6caa91e8ece564c8a8c7127 100644
--- a/content/shell/BUILD.gn
+++ b/content/shell/BUILD.gn
@@ -8,6 +8,7 @@ import("//build/config/ui.gni")
import("//build/config/win/console_app.gni")
import("//build/config/win/manifest.gni")
import("//media/media_options.gni")
+import("//mojo/public/tools/bindings/mojom.gni")
import("//tools/grit/repack.gni")
import("//tools/grit/grit_rule.gni")
if (is_android) {
@@ -55,6 +56,8 @@ static_library("content_shell_lib") {
"browser/layout_test/layout_test_bluetooth_adapter_provider.h",
"browser/layout_test/layout_test_bluetooth_chooser_factory.cc",
"browser/layout_test/layout_test_bluetooth_chooser_factory.h",
+ "browser/layout_test/layout_test_bluetooth_fake_adapter_setter_impl.cc",
+ "browser/layout_test/layout_test_bluetooth_fake_adapter_setter_impl.h",
"browser/layout_test/layout_test_browser_context.cc",
"browser/layout_test/layout_test_browser_context.h",
"browser/layout_test/layout_test_browser_main.cc",
@@ -202,6 +205,7 @@ static_library("content_shell_lib") {
"//content/public/utility",
]
deps = [
+ ":mojo_bindings",
":resources",
"//base",
"//base:base_static",
@@ -517,3 +521,9 @@ if (is_mac) {
]
}
}
+
+mojom("mojo_bindings") {
+ sources = [
+ "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698