| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "chrome_media_client_android.h", | 70 "chrome_media_client_android.h", |
| 71 "chrome_result_codes.h", | 71 "chrome_result_codes.h", |
| 72 "chrome_utility_messages.h", | 72 "chrome_utility_messages.h", |
| 73 "common_message_generator.cc", | 73 "common_message_generator.cc", |
| 74 "common_message_generator.h", | 74 "common_message_generator.h", |
| 75 "common_param_traits.cc", | 75 "common_param_traits.cc", |
| 76 "common_param_traits.h", | 76 "common_param_traits.h", |
| 77 "common_param_traits_macros.h", | 77 "common_param_traits_macros.h", |
| 78 "component_flash_hint_file_linux.cc", | 78 "component_flash_hint_file_linux.cc", |
| 79 "component_flash_hint_file_linux.h", | 79 "component_flash_hint_file_linux.h", |
| 80 "conflicts/module_watcher_win.cc", |
| 81 "conflicts/module_watcher_win.h", |
| 80 "content_restriction.h", | 82 "content_restriction.h", |
| 81 "content_settings_pattern_serializer.cc", | 83 "content_settings_pattern_serializer.cc", |
| 82 "content_settings_pattern_serializer.h", | 84 "content_settings_pattern_serializer.h", |
| 83 "crash_keys.cc", | 85 "crash_keys.cc", |
| 84 "crash_keys.h", | 86 "crash_keys.h", |
| 85 "custom_handlers/protocol_handler.cc", | 87 "custom_handlers/protocol_handler.cc", |
| 86 "custom_handlers/protocol_handler.h", | 88 "custom_handlers/protocol_handler.h", |
| 87 "descriptors_android.h", | 89 "descriptors_android.h", |
| 88 "ini_parser.cc", | 90 "ini_parser.cc", |
| 89 "ini_parser.h", | 91 "ini_parser.h", |
| (...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 662 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 661 | 663 |
| 662 deps = [ | 664 deps = [ |
| 663 ":constants", | 665 ":constants", |
| 664 "//base", | 666 "//base", |
| 665 ] | 667 ] |
| 666 } | 668 } |
| 667 | 669 |
| 668 mojom("mojo_bindings") { | 670 mojom("mojo_bindings") { |
| 669 sources = [ | 671 sources = [ |
| 672 "conflicts/module_database_win.mojom", |
| 673 "conflicts/module_event_win.mojom", |
| 670 "network_diagnostics.mojom", | 674 "network_diagnostics.mojom", |
| 671 "resource_usage_reporter.mojom", | 675 "resource_usage_reporter.mojom", |
| 672 "shell_handler_win.mojom", | 676 "shell_handler_win.mojom", |
| 673 ] | 677 ] |
| 674 | 678 |
| 675 public_deps = [ | 679 public_deps = [ |
| 676 "//url/mojo:url_mojom_gurl", | 680 "//url/mojo:url_mojom_gurl", |
| 677 ] | 681 ] |
| 678 } | 682 } |
| OLD | NEW |