| OLD | NEW |
| 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 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "prerender.mojom", | 694 "prerender.mojom", |
| 695 "renderer_configuration.mojom", | 695 "renderer_configuration.mojom", |
| 696 "resource_usage_reporter.mojom", | 696 "resource_usage_reporter.mojom", |
| 697 "shell_handler_win.mojom", | 697 "shell_handler_win.mojom", |
| 698 "thumbnail_capturer.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", |
| 708 "//ui/gfx/geometry/mojo", |
| 707 "//url/mojo:url_mojom_gurl", | 709 "//url/mojo:url_mojom_gurl", |
| 708 ] | 710 ] |
| 709 } | 711 } |
| 710 | 712 |
| 711 mojom("instant_mojom") { | 713 mojom("instant_mojom") { |
| 712 sources = [ | 714 sources = [ |
| 713 "instant.mojom", | 715 "instant.mojom", |
| 714 ] | 716 ] |
| 715 | 717 |
| 716 public_deps = [ | 718 public_deps = [ |
| 717 "//mojo/common:common_custom_types", | 719 "//mojo/common:common_custom_types", |
| 718 "//url/mojo:url_mojom_gurl", | 720 "//url/mojo:url_mojom_gurl", |
| 719 ] | 721 ] |
| 720 } | 722 } |
| OLD | NEW |