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 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
697 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" | 697 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" |
698 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" | 698 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" |
699 } | 699 } |
700 | 700 |
701 # GYP version: WebKit/public/blink.gyp:android_mojo_bindings_java | 701 # GYP version: WebKit/public/blink.gyp:android_mojo_bindings_java |
702 mojom("android_mojo_bindings") { | 702 mojom("android_mojo_bindings") { |
703 sources = [ | 703 sources = [ |
704 "platform/modules/payments/payment_request.mojom", | 704 "platform/modules/payments/payment_request.mojom", |
705 "platform/modules/webshare/webshare.mojom", | 705 "platform/modules/webshare/webshare.mojom", |
706 ] | 706 ] |
| 707 public_deps = [ |
| 708 "//url/mojo:url_mojom_gurl", |
| 709 ] |
707 | 710 |
708 use_new_wrapper_types = false | 711 use_new_wrapper_types = false |
709 | 712 |
710 # See comment above. | 713 # See comment above. |
711 export_class_attribute = "CONTENT_EXPORT" | 714 export_class_attribute = "CONTENT_EXPORT" |
712 export_define = "CONTENT_IMPLEMENTATION=1" | 715 export_define = "CONTENT_IMPLEMENTATION=1" |
713 export_header = "content/common/content_export.h" | 716 export_header = "content/common/content_export.h" |
714 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" | 717 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" |
715 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" | 718 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" |
716 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" | 719 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" |
(...skipping 18 matching lines...) Expand all Loading... |
735 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" | 738 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" |
736 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" | 739 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" |
737 } | 740 } |
738 | 741 |
739 group("generate_mojo_bindings") { | 742 group("generate_mojo_bindings") { |
740 deps = [ | 743 deps = [ |
741 ":mojo_bindings_blink__generator", | 744 ":mojo_bindings_blink__generator", |
742 ":offscreen_canvas_mojo_bindings_blink__generator", | 745 ":offscreen_canvas_mojo_bindings_blink__generator", |
743 ] | 746 ] |
744 } | 747 } |
OLD | NEW |