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 ] | |
710 | 707 |
711 use_new_wrapper_types = false | 708 use_new_wrapper_types = false |
712 | 709 |
713 # See comment above. | 710 # See comment above. |
714 export_class_attribute = "CONTENT_EXPORT" | 711 export_class_attribute = "CONTENT_EXPORT" |
715 export_define = "CONTENT_IMPLEMENTATION=1" | 712 export_define = "CONTENT_IMPLEMENTATION=1" |
716 export_header = "content/common/content_export.h" | 713 export_header = "content/common/content_export.h" |
717 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" | 714 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" |
718 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" | 715 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" |
719 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" | 716 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" |
(...skipping 18 matching lines...) Expand all Loading... |
738 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" | 735 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" |
739 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" | 736 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" |
740 } | 737 } |
741 | 738 |
742 group("generate_mojo_bindings") { | 739 group("generate_mojo_bindings") { |
743 deps = [ | 740 deps = [ |
744 ":mojo_bindings_blink__generator", | 741 ":mojo_bindings_blink__generator", |
745 ":offscreen_canvas_mojo_bindings_blink__generator", | 742 ":offscreen_canvas_mojo_bindings_blink__generator", |
746 ] | 743 ] |
747 } | 744 } |
OLD | NEW |