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