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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | |
209 ] | 208 ] |
| 209 |
210 public_deps = [ | 210 public_deps = [ |
211 "//url/mojo:url_mojom_gurl", | |
212 "//url/mojo:url_mojom_origin", | 211 "//url/mojo:url_mojom_origin", |
213 ] | 212 ] |
214 | 213 |
215 # See comment above. | 214 # See comment above. |
216 export_class_attribute = "CONTENT_EXPORT" | 215 export_class_attribute = "CONTENT_EXPORT" |
217 export_define = "CONTENT_IMPLEMENTATION=1" | 216 export_define = "CONTENT_IMPLEMENTATION=1" |
218 export_header = "content/common/content_export.h" | 217 export_header = "content/common/content_export.h" |
219 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" | 218 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" |
220 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" | 219 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" |
221 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... |
237 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" | 236 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" |
238 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" | 237 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" |
239 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" | 238 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" |
240 } | 239 } |
241 | 240 |
242 group("generate_mojo_bindings") { | 241 group("generate_mojo_bindings") { |
243 deps = [ | 242 deps = [ |
244 ":mojo_bindings_blink__generator", | 243 ":mojo_bindings_blink__generator", |
245 ] | 244 ] |
246 } | 245 } |
OLD | NEW |