| 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 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 686 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 687 | 687 |
| 688 deps = [ | 688 deps = [ |
| 689 ":constants", | 689 ":constants", |
| 690 "//base", | 690 "//base", |
| 691 ] | 691 ] |
| 692 } | 692 } |
| 693 | 693 |
| 694 mojom("mojo_bindings") { | 694 mojom("mojo_bindings") { |
| 695 sources = [ | 695 sources = [ |
| 696 "cache_stats_recorder.mojom", |
| 696 "conflicts/module_event_sink_win.mojom", | 697 "conflicts/module_event_sink_win.mojom", |
| 697 "file_patcher.mojom", | 698 "file_patcher.mojom", |
| 698 "image_context_menu_renderer.mojom", | 699 "image_context_menu_renderer.mojom", |
| 699 "insecure_content_renderer.mojom", | 700 "insecure_content_renderer.mojom", |
| 700 "net_benchmarking.mojom", | 701 "net_benchmarking.mojom", |
| 701 "network_diagnostics.mojom", | 702 "network_diagnostics.mojom", |
| 702 "open_search_description_document_handler.mojom", | 703 "open_search_description_document_handler.mojom", |
| 703 "prerender.mojom", | 704 "prerender.mojom", |
| 704 "renderer_configuration.mojom", | 705 "renderer_configuration.mojom", |
| 705 "resource_usage_reporter.mojom", | 706 "resource_usage_reporter.mojom", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 726 mojom("instant_mojom") { | 727 mojom("instant_mojom") { |
| 727 sources = [ | 728 sources = [ |
| 728 "instant.mojom", | 729 "instant.mojom", |
| 729 ] | 730 ] |
| 730 | 731 |
| 731 public_deps = [ | 732 public_deps = [ |
| 732 "//mojo/common:common_custom_types", | 733 "//mojo/common:common_custom_types", |
| 733 "//url/mojo:url_mojom_gurl", | 734 "//url/mojo:url_mojom_gurl", |
| 734 ] | 735 ] |
| 735 } | 736 } |
| OLD | NEW |