OLD | NEW |
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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" | 197 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" |
198 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" | 198 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" |
199 } | 199 } |
200 | 200 |
201 # GYP version: WebKit/public/blink.gyp:new_wrapper_types_mojo_bindings | 201 # GYP version: WebKit/public/blink.gyp:new_wrapper_types_mojo_bindings |
202 mojom("new_wrapper_types_mojo_bindings") { | 202 mojom("new_wrapper_types_mojo_bindings") { |
203 sources = [ | 203 sources = [ |
204 "platform/modules/permissions/permission.mojom", | 204 "platform/modules/permissions/permission.mojom", |
205 "platform/modules/permissions/permission_status.mojom", | 205 "platform/modules/permissions/permission_status.mojom", |
206 "platform/modules/presentation/presentation.mojom", | 206 "platform/modules/presentation/presentation.mojom", |
| 207 "platform/modules/websockets/websocket.mojom", |
207 ] | 208 ] |
208 | |
209 public_deps = [ | 209 public_deps = [ |
| 210 "//url/mojo:url_mojom_gurl", |
210 "//url/mojo:url_mojom_origin", | 211 "//url/mojo:url_mojom_origin", |
211 ] | 212 ] |
212 | 213 |
213 # See comment above. | 214 # See comment above. |
214 export_class_attribute = "CONTENT_EXPORT" | 215 export_class_attribute = "CONTENT_EXPORT" |
215 export_define = "CONTENT_IMPLEMENTATION=1" | 216 export_define = "CONTENT_IMPLEMENTATION=1" |
216 export_header = "content/common/content_export.h" | 217 export_header = "content/common/content_export.h" |
217 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" | 218 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" |
218 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" | 219 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" |
219 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" | 220 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" |
(...skipping 15 matching lines...) Expand all Loading... |
235 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" | 236 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" |
236 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" | 237 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" |
237 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" | 238 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" |
238 } | 239 } |
239 | 240 |
240 group("generate_mojo_bindings") { | 241 group("generate_mojo_bindings") { |
241 deps = [ | 242 deps = [ |
242 ":mojo_bindings_blink__generator", | 243 ":mojo_bindings_blink__generator", |
243 ] | 244 ] |
244 } | 245 } |
OLD | NEW |