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

Side by Side Diff: content/common/BUILD.gn

Issue 2713033004: Layered component for web payments (Closed)
Patch Set: Rebase Created 3 years, 9 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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//sandbox/features.gni") 10 import("//sandbox/features.gni")
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 "storage_partition_service.mojom", 598 "storage_partition_service.mojom",
599 "url_loader.mojom", 599 "url_loader.mojom",
600 "url_loader_factory.mojom", 600 "url_loader_factory.mojom",
601 "video_capture.mojom", 601 "video_capture.mojom",
602 ] 602 ]
603 603
604 import_dirs = [ "//mojo/services" ] 604 import_dirs = [ "//mojo/services" ]
605 605
606 public_deps = [ 606 public_deps = [
607 "//components/leveldb/public/interfaces", 607 "//components/leveldb/public/interfaces",
608 "//components/payments:payment_app", 608 "//components/payments/content:payment_app",
609 "//content/public/common:interfaces", 609 "//content/public/common:interfaces",
610 610
611 # TODO(mcasas): remove the following dep after https://crbug.com/653994 611 # TODO(mcasas): remove the following dep after https://crbug.com/653994
612 "//gpu/ipc/common:interfaces", 612 "//gpu/ipc/common:interfaces",
613 "//ipc:mojom", 613 "//ipc:mojom",
614 "//media/capture/mojo:capture_types", 614 "//media/capture/mojo:capture_types",
615 "//media/mojo/interfaces", 615 "//media/mojo/interfaces",
616 "//mojo/common:common_custom_types", 616 "//mojo/common:common_custom_types",
617 "//services/service_manager/public/interfaces", 617 "//services/service_manager/public/interfaces",
618 "//services/ui/public/interfaces", 618 "//services/ui/public/interfaces",
619 "//services/video_capture/public/interfaces", 619 "//services/video_capture/public/interfaces",
620 "//skia/public/interfaces", 620 "//skia/public/interfaces",
621 "//third_party/WebKit/public:mojo_bindings", 621 "//third_party/WebKit/public:mojo_bindings",
622 "//ui/base/mojo:mojo_bindings", 622 "//ui/base/mojo:mojo_bindings",
623 "//ui/gfx/geometry/mojo", 623 "//ui/gfx/geometry/mojo",
624 "//ui/gfx/mojo", 624 "//ui/gfx/mojo",
625 "//url/mojo:url_mojom_gurl", 625 "//url/mojo:url_mojom_gurl",
626 "//url/mojo:url_mojom_origin", 626 "//url/mojo:url_mojom_origin",
627 ] 627 ]
628 628
629 overridden_deps = [ "//ipc:mojom" ] 629 overridden_deps = [ "//ipc:mojom" ]
630 component_deps = [ "//ipc" ] 630 component_deps = [ "//ipc" ]
631 631
632 export_class_attribute = "CONTENT_EXPORT" 632 export_class_attribute = "CONTENT_EXPORT"
633 export_define = "CONTENT_IMPLEMENTATION=1" 633 export_define = "CONTENT_IMPLEMENTATION=1"
634 export_header = "content/common/content_export.h" 634 export_header = "content/common/content_export.h"
635 } 635 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698