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

Side by Side Diff: third_party/WebKit/public/BUILD.gn

Issue 2284473002: Move WebSocketHandleImpl into Blink (take 2) (Closed)
Patch Set: Extract WebSocketHandle as pure interface Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//third_party/WebKit/Source/config.gni") 6 import("//third_party/WebKit/Source/config.gni")
7 import("//tools/grit/grit_rule.gni") 7 import("//tools/grit/grit_rule.gni")
8 8
9 blink_headers_values = exec_script("//build/gypi_to_gn.py", 9 blink_headers_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("blink_headers.gypi") ], 10 [ rebase_path("blink_headers.gypi") ],
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" 198 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1"
199 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" 199 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h"
200 } 200 }
201 201
202 # GYP version: WebKit/public/blink.gyp:new_wrapper_types_mojo_bindings 202 # GYP version: WebKit/public/blink.gyp:new_wrapper_types_mojo_bindings
203 mojom("new_wrapper_types_mojo_bindings") { 203 mojom("new_wrapper_types_mojo_bindings") {
204 sources = [ 204 sources = [
205 "platform/modules/permissions/permission.mojom", 205 "platform/modules/permissions/permission.mojom",
206 "platform/modules/permissions/permission_status.mojom", 206 "platform/modules/permissions/permission_status.mojom",
207 "platform/modules/presentation/presentation.mojom", 207 "platform/modules/presentation/presentation.mojom",
208 "platform/modules/websockets/websocket.mojom",
208 ] 209 ]
209
210 public_deps = [ 210 public_deps = [
211 "//url/mojo:url_mojom_gurl",
211 "//url/mojo:url_mojom_origin", 212 "//url/mojo:url_mojom_origin",
212 ] 213 ]
213 214
214 # See comment above. 215 # See comment above.
215 export_class_attribute = "CONTENT_EXPORT" 216 export_class_attribute = "CONTENT_EXPORT"
216 export_define = "CONTENT_IMPLEMENTATION=1" 217 export_define = "CONTENT_IMPLEMENTATION=1"
217 export_header = "content/common/content_export.h" 218 export_header = "content/common/content_export.h"
218 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" 219 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT"
219 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" 220 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1"
220 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" 221 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h"
(...skipping 15 matching lines...) Expand all
236 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" 237 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT"
237 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" 238 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1"
238 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" 239 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h"
239 } 240 }
240 241
241 group("generate_mojo_bindings") { 242 group("generate_mojo_bindings") {
242 deps = [ 243 deps = [
243 ":mojo_bindings_blink__generator", 244 ":mojo_bindings_blink__generator",
244 ] 245 ]
245 } 246 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698