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

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

Issue 2455543002: Convert PDF component IPC to mojo. (Closed)
Patch Set: Fix date 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 import("//third_party/WebKit/public/public_features.gni") 7 import("//third_party/WebKit/public/public_features.gni")
8 import("//third_party/WebKit/Source/config.gni") 8 import("//third_party/WebKit/Source/config.gni")
9 import("//third_party/WebKit/Source/core/core.gni") 9 import("//third_party/WebKit/Source/core/core.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 output_dir = "$root_gen_dir/blink/public/resources" 637 output_dir = "$root_gen_dir/blink/public/resources"
638 source = "blink_image_resources.grd" 638 source = "blink_image_resources.grd"
639 outputs = [ 639 outputs = [
640 "grit/blink_image_resources.h", 640 "grit/blink_image_resources.h",
641 "blink_image_resources_100_percent.pak", 641 "blink_image_resources_100_percent.pak",
642 "blink_image_resources_200_percent.pak", 642 "blink_image_resources_200_percent.pak",
643 ] 643 ]
644 } 644 }
645 645
646 mojom("mojo_bindings") { 646 mojom("mojo_bindings") {
647 visibility = [ "//content/*" ] 647 visibility = [
648 "//components/*",
Sam McNally 2017/03/23 23:57:00 Is this needed?
benwells 2017/03/27 06:55:07 I'd like to avoid it but not sure how. What should
benwells 2017/03/29 04:18:04 Done.
649 "//content/*",
650 ]
648 visibility_blink = [ 651 visibility_blink = [
649 "//content/common:mojo_bindings_blink", 652 "//content/common:mojo_bindings_blink",
653 "//components/*",
650 "//third_party/WebKit/Source/platform", 654 "//third_party/WebKit/Source/platform",
651 ] 655 ]
652 sources = [ 656 sources = [
653 "platform/mime_registry.mojom", 657 "platform/mime_registry.mojom",
654 "platform/modules/app_banner/app_banner.mojom", 658 "platform/modules/app_banner/app_banner.mojom",
655 "platform/modules/background_fetch/background_fetch.mojom", 659 "platform/modules/background_fetch/background_fetch.mojom",
656 "platform/modules/background_sync/background_sync.mojom", 660 "platform/modules/background_sync/background_sync.mojom",
657 "platform/modules/bluetooth/web_bluetooth.mojom", 661 "platform/modules/bluetooth/web_bluetooth.mojom",
658 "platform/modules/broadcastchannel/broadcast_channel.mojom", 662 "platform/modules/broadcastchannel/broadcast_channel.mojom",
659 "platform/modules/budget_service/budget_service.mojom", 663 "platform/modules/budget_service/budget_service.mojom",
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 # relegated to a separate target to avoid duplication between the variants. 757 # relegated to a separate target to avoid duplication between the variants.
754 source_set("shared_typemap_traits") { 758 source_set("shared_typemap_traits") {
755 visibility = [ ":*" ] 759 visibility = [ ":*" ]
756 sources = [ 760 sources = [
757 "web/ConsoleMessageStructTraits.cpp", 761 "web/ConsoleMessageStructTraits.cpp",
758 ] 762 ]
759 deps = [ 763 deps = [
760 ":mojo_bindings_shared__generator", 764 ":mojo_bindings_shared__generator",
761 ] 765 ]
762 } 766 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698