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

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

Issue 2705613003: Convert utility process zip creator IPC to mojo (Closed)
Patch Set: Add a comment about release references. 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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 "file_patcher.mojom", 685 "file_patcher.mojom",
686 "insecure_content_renderer.mojom", 686 "insecure_content_renderer.mojom",
687 "net_benchmarking.mojom", 687 "net_benchmarking.mojom",
688 "network_diagnostics.mojom", 688 "network_diagnostics.mojom",
689 "prerender.mojom", 689 "prerender.mojom",
690 "renderer_configuration.mojom", 690 "renderer_configuration.mojom",
691 "resource_usage_reporter.mojom", 691 "resource_usage_reporter.mojom",
692 "shell_handler_win.mojom", 692 "shell_handler_win.mojom",
693 ] 693 ]
694 694
695 if (is_chromeos) {
696 sources += [ "zip_file_creator.mojom" ]
697 }
698
695 public_deps = [ 699 public_deps = [
696 "//components/content_settings/core/common:mojo_bindings", 700 "//components/content_settings/core/common:mojo_bindings",
697 "//mojo/common:common_custom_types", 701 "//mojo/common:common_custom_types",
698 "//url/mojo:url_mojom_gurl", 702 "//url/mojo:url_mojom_gurl",
699 ] 703 ]
700 } 704 }
701 705
702 mojom("instant_mojom") { 706 mojom("instant_mojom") {
703 sources = [ 707 sources = [
704 "instant.mojom", 708 "instant.mojom",
705 ] 709 ]
706 710
707 public_deps = [ 711 public_deps = [
708 "//mojo/common:common_custom_types", 712 "//mojo/common:common_custom_types",
709 "//url/mojo:url_mojom_gurl", 713 "//url/mojo:url_mojom_gurl",
710 ] 714 ]
711 } 715 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698