Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: third_party/WebKit/public/BUILD.gn

Issue 2406923002: Move payment_request.mojom file to components/ (Closed)
Patch Set: Add Android test dependencies Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 export_class_attribute = "CONTENT_EXPORT" 689 export_class_attribute = "CONTENT_EXPORT"
690 export_define = "CONTENT_IMPLEMENTATION=1" 690 export_define = "CONTENT_IMPLEMENTATION=1"
691 export_header = "content/common/content_export.h" 691 export_header = "content/common/content_export.h"
692 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" 692 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT"
693 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" 693 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1"
694 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" 694 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h"
695 } 695 }
696 696
697 mojom("android_mojo_bindings") { 697 mojom("android_mojo_bindings") {
698 sources = [ 698 sources = [
699 "platform/modules/payments/payment_request.mojom",
700 "platform/modules/webshare/webshare.mojom", 699 "platform/modules/webshare/webshare.mojom",
701 ] 700 ]
702 public_deps = [ 701 public_deps = [
702 "//components/payments:payment_request",
703 "//url/mojo:url_mojom_gurl", 703 "//url/mojo:url_mojom_gurl",
704 ] 704 ]
705 705
706 use_new_wrapper_types = false 706 use_new_wrapper_types = false
707 707
708 # See comment above. 708 # See comment above.
709 export_class_attribute = "CONTENT_EXPORT" 709 export_class_attribute = "CONTENT_EXPORT"
710 export_define = "CONTENT_IMPLEMENTATION=1" 710 export_define = "CONTENT_IMPLEMENTATION=1"
711 export_header = "content/common/content_export.h" 711 export_header = "content/common/content_export.h"
712 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" 712 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 # relegated to a separate target to avoid duplication between the variants. 746 # relegated to a separate target to avoid duplication between the variants.
747 source_set("shared_typemap_traits") { 747 source_set("shared_typemap_traits") {
748 visibility = [ ":*" ] 748 visibility = [ ":*" ]
749 sources = [ 749 sources = [
750 "web/WindowFeaturesStructTraits.cpp", 750 "web/WindowFeaturesStructTraits.cpp",
751 ] 751 ]
752 deps = [ 752 deps = [
753 ":new_wrapper_types_mojo_bindings_shared__generator", 753 ":new_wrapper_types_mojo_bindings_shared__generator",
754 ] 754 ]
755 } 755 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698