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

Unified Diff: third_party/WebKit/public/BUILD.gn

Issue 1775953004: bluetooth: Move writeValue to mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Moar cleanup 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: third_party/WebKit/public/BUILD.gn
diff --git a/third_party/WebKit/public/BUILD.gn b/third_party/WebKit/public/BUILD.gn
index 90bb886182de1b4ea2292ec5b0d67ef4f07613df..b72f50aefdda7dcd969cd18a6b437978fe0171e3 100644
--- a/third_party/WebKit/public/BUILD.gn
+++ b/third_party/WebKit/public/BUILD.gn
@@ -4,6 +4,7 @@
import("//third_party/WebKit/Source/config.gni")
import("//tools/grit/grit_rule.gni")
+import("//mojo/public/tools/bindings/mojom.gni")
blink_headers_values = exec_script("//build/gypi_to_gn.py",
[ rebase_path("blink_headers.gypi") ],
@@ -83,7 +84,10 @@ group("all_blink") {
}
config("blink_headers_config") {
- include_dirs = [ ".." ]
+ include_dirs = [
+ "..",
+ "$root_gen_dir/third_party/WebKit",
+ ]
# Allow :blink_headers to include v8.h without linking to it.
configs = [ "//v8:external_config" ]
@@ -169,3 +173,9 @@ grit("image_resources") {
"blink_image_resources_200_percent.pak",
]
}
+
+mojom("mojo_bindings") {
+ sources = [
+ "platform/modules/bluetooth/web_bluetooth.mojom",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698