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

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

Issue 2746293005: Migrated ChromeViewHostMsg_PageHasOSDD to Mojo. (Closed)
Patch Set: Manually reverted format changes (from my auto-formatting plugin). 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("//build/util/process_version.gni") 6 import("//build/util/process_version.gni")
7 import("//chrome/common/features.gni") 7 import("//chrome/common/features.gni")
8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path.
9 import("//extensions/features/features.gni") 9 import("//extensions/features/features.gni")
10 import("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 } 684 }
685 685
686 mojom("mojo_bindings") { 686 mojom("mojo_bindings") {
687 sources = [ 687 sources = [
688 "conflicts/module_event_sink_win.mojom", 688 "conflicts/module_event_sink_win.mojom",
689 "field_trial_recorder.mojom", 689 "field_trial_recorder.mojom",
690 "file_patcher.mojom", 690 "file_patcher.mojom",
691 "insecure_content_renderer.mojom", 691 "insecure_content_renderer.mojom",
692 "net_benchmarking.mojom", 692 "net_benchmarking.mojom",
693 "network_diagnostics.mojom", 693 "network_diagnostics.mojom",
694 "osdd_handler.mojom",
694 "prerender.mojom", 695 "prerender.mojom",
695 "renderer_configuration.mojom", 696 "renderer_configuration.mojom",
696 "resource_usage_reporter.mojom", 697 "resource_usage_reporter.mojom",
697 "shell_handler_win.mojom", 698 "shell_handler_win.mojom",
698 ] 699 ]
699 700
700 if (is_chromeos) { 701 if (is_chromeos) {
701 sources += [ "zip_file_creator.mojom" ] 702 sources += [ "zip_file_creator.mojom" ]
702 } 703 }
703 704
704 public_deps = [ 705 public_deps = [
705 "//components/content_settings/core/common:mojo_bindings", 706 "//components/content_settings/core/common:mojo_bindings",
706 "//mojo/common:common_custom_types", 707 "//mojo/common:common_custom_types",
707 "//url/mojo:url_mojom_gurl", 708 "//url/mojo:url_mojom_gurl",
708 ] 709 ]
709 } 710 }
710 711
711 mojom("instant_mojom") { 712 mojom("instant_mojom") {
712 sources = [ 713 sources = [
713 "instant.mojom", 714 "instant.mojom",
714 ] 715 ]
715 716
716 public_deps = [ 717 public_deps = [
717 "//mojo/common:common_custom_types", 718 "//mojo/common:common_custom_types",
718 "//url/mojo:url_mojom_gurl", 719 "//url/mojo:url_mojom_gurl",
719 ] 720 ]
720 } 721 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698