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

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

Issue 2209883002: Link blink mojom bindings into platform target (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge and add comments Created 4 years, 4 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
« no previous file with comments | « third_party/WebKit/Source/web/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
- ]
-}
« no previous file with comments | « third_party/WebKit/Source/web/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698