| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "media/webrtc_logging_message_data.h", | 102 "media/webrtc_logging_message_data.h", |
| 103 "media/webrtc_logging_messages.h", | 103 "media/webrtc_logging_messages.h", |
| 104 "media_galleries/metadata_types.h", | 104 "media_galleries/metadata_types.h", |
| 105 "multi_process_lock.h", | 105 "multi_process_lock.h", |
| 106 "multi_process_lock_linux.cc", | 106 "multi_process_lock_linux.cc", |
| 107 "multi_process_lock_mac.cc", | 107 "multi_process_lock_mac.cc", |
| 108 "multi_process_lock_win.cc", | 108 "multi_process_lock_win.cc", |
| 109 "origin_trials/chrome_origin_trial_policy.cc", | 109 "origin_trials/chrome_origin_trial_policy.cc", |
| 110 "origin_trials/chrome_origin_trial_policy.h", | 110 "origin_trials/chrome_origin_trial_policy.h", |
| 111 "page_load_metrics/page_load_metrics_messages.h", | 111 "page_load_metrics/page_load_metrics_messages.h", |
| 112 "page_load_metrics/page_load_metrics_struct_traits.cc", |
| 113 "page_load_metrics/page_load_metrics_struct_traits.h", |
| 112 "page_load_metrics/page_load_timing.cc", | 114 "page_load_metrics/page_load_timing.cc", |
| 113 "page_load_metrics/page_load_timing.h", | 115 "page_load_metrics/page_load_timing.h", |
| 114 "page_load_metrics/page_track_decider.cc", | 116 "page_load_metrics/page_track_decider.cc", |
| 115 "page_load_metrics/page_track_decider.h", | 117 "page_load_metrics/page_track_decider.h", |
| 116 "partial_circular_buffer.cc", | 118 "partial_circular_buffer.cc", |
| 117 "partial_circular_buffer.h", | 119 "partial_circular_buffer.h", |
| 118 "pause_tabs_field_trial.h", | 120 "pause_tabs_field_trial.h", |
| 119 "pref_names_util.cc", | 121 "pref_names_util.cc", |
| 120 "pref_names_util.h", | 122 "pref_names_util.h", |
| 121 "prerender_types.h", | 123 "prerender_types.h", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 152 defines = [] | 154 defines = [] |
| 153 | 155 |
| 154 configs += [ | 156 configs += [ |
| 155 "//build/config:precompiled_headers", | 157 "//build/config:precompiled_headers", |
| 156 "//build/config/compiler:wexit_time_destructors", | 158 "//build/config/compiler:wexit_time_destructors", |
| 157 ] | 159 ] |
| 158 | 160 |
| 159 public_deps = [ | 161 public_deps = [ |
| 160 ":features", | 162 ":features", |
| 161 ":mojo_bindings", | 163 ":mojo_bindings", |
| 164 ":page_load_metrics_bindings", |
| 162 "//base:base", | 165 "//base:base", |
| 163 "//base:base_static", | 166 "//base:base_static", |
| 164 "//base:i18n", | 167 "//base:i18n", |
| 165 "//chrome:resources", | 168 "//chrome:resources", |
| 166 "//chrome:strings", | 169 "//chrome:strings", |
| 167 "//chrome/app/theme:theme_resources", | 170 "//chrome/app/theme:theme_resources", |
| 168 "//chrome/common:constants", | 171 "//chrome/common:constants", |
| 169 "//chrome/common/net", | 172 "//chrome/common/net", |
| 170 "//chrome/common/safe_browsing:proto", | 173 "//chrome/common/safe_browsing:proto", |
| 171 "//chrome/installer/util:with_no_strings", | 174 "//chrome/installer/util:with_no_strings", |
| (...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 729 mojom("instant_mojom") { | 732 mojom("instant_mojom") { |
| 730 sources = [ | 733 sources = [ |
| 731 "instant.mojom", | 734 "instant.mojom", |
| 732 ] | 735 ] |
| 733 | 736 |
| 734 public_deps = [ | 737 public_deps = [ |
| 735 "//mojo/common:common_custom_types", | 738 "//mojo/common:common_custom_types", |
| 736 "//url/mojo:url_mojom_gurl", | 739 "//url/mojo:url_mojom_gurl", |
| 737 ] | 740 ] |
| 738 } | 741 } |
| 742 |
| 743 mojom("page_load_metrics_bindings") { |
| 744 sources = [ |
| 745 "page_load_metrics/page_load_metrics.mojom", |
| 746 ] |
| 747 |
| 748 public_deps = [ |
| 749 "//mojo/common:common_custom_types", |
| 750 ] |
| 751 } |
| OLD | NEW |