| Index: third_party/WebKit/public/BUILD.gn
|
| diff --git a/third_party/WebKit/public/BUILD.gn b/third_party/WebKit/public/BUILD.gn
|
| index 089089e8612f6ebc5ea95cbd779dec65860c13ff..9f0993421c76b6d7c253959add9dea6cb1364ca1 100644
|
| --- a/third_party/WebKit/public/BUILD.gn
|
| +++ b/third_party/WebKit/public/BUILD.gn
|
| @@ -2,7 +2,6 @@
|
| # 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")
|
|
|
| @@ -112,7 +111,7 @@ source_set("blink_headers") {
|
| ]
|
| sources = blink_headers_values.blink_public_sources
|
| deps = [
|
| - ":generate_mojo_bindings",
|
| + "//third_party/WebKit/Source/platform:generate_mojo_bindings",
|
| ]
|
| }
|
|
|
| @@ -158,54 +157,3 @@ grit("image_resources") {
|
| "blink_image_resources_200_percent.pak",
|
| ]
|
| }
|
| -
|
| -# GYP versions: WebKit/public/blink.gyp:mojo_bindings_mojom,
|
| -# WebKit/public/blink.gyp:mojo_bindings_blink_mojom
|
| -mojom("mojo_bindings") {
|
| - sources = [
|
| - "platform/mime_registry.mojom",
|
| - "platform/modules/background_sync/background_sync.mojom",
|
| - "platform/modules/bluetooth/web_bluetooth.mojom",
|
| - "platform/modules/broadcastchannel/broadcast_channel.mojom",
|
| - "platform/modules/hyphenation/hyphenation.mojom",
|
| - "platform/modules/notifications/notification.mojom",
|
| - "platform/modules/notifications/notification_service.mojom",
|
| - "platform/modules/offscreencanvas/offscreen_canvas_surface.mojom",
|
| - "platform/modules/permissions/permission.mojom",
|
| - "platform/modules/permissions/permission_status.mojom",
|
| - "platform/modules/serviceworker/service_worker_event_status.mojom",
|
| - "platform/modules/wake_lock/wake_lock_service.mojom",
|
| - ]
|
| - public_deps = [
|
| - ":android_mojo_bindings",
|
| - ":new_wrapper_types_mojo_bindings",
|
| - "//cc/ipc:interfaces_surfaceid_only",
|
| - "//device/bluetooth/public/interfaces:bluetooth_mojom_bluetooth_uuid",
|
| - "//url/mojo:url_mojom_origin",
|
| - ]
|
| -
|
| - use_new_wrapper_types = false
|
| -}
|
| -
|
| -# GYP version: WebKit/public/blink.gyp:new_wrapper_types_mojo_bindings
|
| -mojom("new_wrapper_types_mojo_bindings") {
|
| - sources = [
|
| - "platform/modules/presentation/presentation.mojom",
|
| - ]
|
| -}
|
| -
|
| -# GYP version: WebKit/public/blink.gyp:android_mojo_bindings_java
|
| -mojom("android_mojo_bindings") {
|
| - sources = [
|
| - "platform/modules/payments/payment_request.mojom",
|
| - "platform/modules/webshare/webshare.mojom",
|
| - ]
|
| -
|
| - use_new_wrapper_types = false
|
| -}
|
| -
|
| -group("generate_mojo_bindings") {
|
| - deps = [
|
| - ":mojo_bindings_blink__generator",
|
| - ]
|
| -}
|
|
|