| 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..d60742d253ff2496305f20454c333b3f9b3c8255 100644
|
| --- a/third_party/WebKit/public/BUILD.gn
|
| +++ b/third_party/WebKit/public/BUILD.gn
|
| @@ -2,6 +2,7 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//mojo/public/tools/bindings/mojom.gni")
|
| import("//third_party/WebKit/Source/config.gni")
|
| import("//tools/grit/grit_rule.gni")
|
|
|
| @@ -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",
|
| + ]
|
| +}
|
|
|