| 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("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "chrome_media_client_android.h", | 66 "chrome_media_client_android.h", |
| 67 "chrome_result_codes.h", | 67 "chrome_result_codes.h", |
| 68 "chrome_utility_messages.h", | 68 "chrome_utility_messages.h", |
| 69 "common_message_generator.cc", | 69 "common_message_generator.cc", |
| 70 "common_message_generator.h", | 70 "common_message_generator.h", |
| 71 "common_param_traits.cc", | 71 "common_param_traits.cc", |
| 72 "common_param_traits.h", | 72 "common_param_traits.h", |
| 73 "common_param_traits_macros.h", | 73 "common_param_traits_macros.h", |
| 74 "component_flash_hint_file_linux.cc", | 74 "component_flash_hint_file_linux.cc", |
| 75 "component_flash_hint_file_linux.h", | 75 "component_flash_hint_file_linux.h", |
| 76 "conflicts/module_watcher_win.cc", |
| 77 "conflicts/module_watcher_win.h", |
| 76 "content_restriction.h", | 78 "content_restriction.h", |
| 77 "content_settings_pattern_serializer.cc", | 79 "content_settings_pattern_serializer.cc", |
| 78 "content_settings_pattern_serializer.h", | 80 "content_settings_pattern_serializer.h", |
| 79 "crash_keys.cc", | 81 "crash_keys.cc", |
| 80 "crash_keys.h", | 82 "crash_keys.h", |
| 81 "custom_handlers/protocol_handler.cc", | 83 "custom_handlers/protocol_handler.cc", |
| 82 "custom_handlers/protocol_handler.h", | 84 "custom_handlers/protocol_handler.h", |
| 83 "descriptors_android.h", | 85 "descriptors_android.h", |
| 84 "ini_parser.cc", | 86 "ini_parser.cc", |
| 85 "ini_parser.h", | 87 "ini_parser.h", |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 656 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 655 | 657 |
| 656 deps = [ | 658 deps = [ |
| 657 ":constants", | 659 ":constants", |
| 658 "//base", | 660 "//base", |
| 659 ] | 661 ] |
| 660 } | 662 } |
| 661 | 663 |
| 662 mojom("mojo_bindings") { | 664 mojom("mojo_bindings") { |
| 663 sources = [ | 665 sources = [ |
| 666 "conflicts/module_database_win.mojom", |
| 667 "conflicts/module_event_win.mojom", |
| 664 "image_decoder.mojom", | 668 "image_decoder.mojom", |
| 665 "network_diagnostics.mojom", | 669 "network_diagnostics.mojom", |
| 666 "resource_usage_reporter.mojom", | 670 "resource_usage_reporter.mojom", |
| 667 "shell_handler_win.mojom", | 671 "shell_handler_win.mojom", |
| 668 ] | 672 ] |
| 669 | 673 |
| 670 public_deps = [ | 674 public_deps = [ |
| 671 "//skia/public/interfaces", | 675 "//skia/public/interfaces", |
| 672 "//url/mojo:url_mojom_gurl", | 676 "//url/mojo:url_mojom_gurl", |
| 673 ] | 677 ] |
| 674 | 678 |
| 675 use_new_wrapper_types = false | 679 use_new_wrapper_types = false |
| 676 } | 680 } |
| OLD | NEW |