| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 "trace_event_args_whitelist.h", | 139 "trace_event_args_whitelist.h", |
| 140 "tts_messages.h", | 140 "tts_messages.h", |
| 141 "tts_utterance_request.cc", | 141 "tts_utterance_request.cc", |
| 142 "tts_utterance_request.h", | 142 "tts_utterance_request.h", |
| 143 "url_constants.cc", | 143 "url_constants.cc", |
| 144 "url_constants.h", | 144 "url_constants.h", |
| 145 "v8_breakpad_support_win.cc", | 145 "v8_breakpad_support_win.cc", |
| 146 "v8_breakpad_support_win.h", | 146 "v8_breakpad_support_win.h", |
| 147 "variations/child_process_field_trial_syncer.cc", | 147 "variations/child_process_field_trial_syncer.cc", |
| 148 "variations/child_process_field_trial_syncer.h", | 148 "variations/child_process_field_trial_syncer.h", |
| 149 "variations/variations_util.cc", | |
| 150 "variations/variations_util.h", | |
| 151 "web_application_info.cc", | 149 "web_application_info.cc", |
| 152 "web_application_info.h", | 150 "web_application_info.h", |
| 153 "widevine_cdm_constants.cc", | 151 "widevine_cdm_constants.cc", |
| 154 "widevine_cdm_constants.h", | 152 "widevine_cdm_constants.h", |
| 155 ] | 153 ] |
| 156 defines = [] | 154 defines = [] |
| 157 | 155 |
| 158 configs += [ | 156 configs += [ |
| 159 "//build/config:precompiled_headers", | 157 "//build/config:precompiled_headers", |
| 160 "//build/config/compiler:wexit_time_destructors", | 158 "//build/config/compiler:wexit_time_destructors", |
| 161 ] | 159 ] |
| 162 | 160 |
| 163 public_deps = [ | 161 public_deps = [ |
| 164 ":features", | 162 ":features", |
| 165 ":mojo_bindings", | 163 ":mojo_bindings", |
| 166 "//base:base", | 164 "//base:base", |
| 167 "//base:base_static", | 165 "//base:base_static", |
| 168 "//base:i18n", | 166 "//base:i18n", |
| 169 "//chrome:resources", | 167 "//chrome:resources", |
| 170 "//chrome:strings", | 168 "//chrome:strings", |
| 171 "//chrome/app/theme:theme_resources", | 169 "//chrome/app/theme:theme_resources", |
| 172 "//chrome/common:constants", | 170 "//chrome/common:constants", |
| 173 "//chrome/common/net", | 171 "//chrome/common/net", |
| 174 "//chrome/common/safe_browsing:proto", | 172 "//chrome/common/safe_browsing:proto", |
| 175 "//chrome/common/variations:fieldtrial_testing_config", | |
| 176 "//chrome/installer/util:with_no_strings", | 173 "//chrome/installer/util:with_no_strings", |
| 177 "//components/autofill/content/common:ipc_traits", | 174 "//components/autofill/content/common:ipc_traits", |
| 178 "//components/autofill/core/common", | 175 "//components/autofill/core/common", |
| 179 "//components/cast_certificate", | 176 "//components/cast_certificate", |
| 180 "//components/cdm/common", | 177 "//components/cdm/common", |
| 181 "//components/cloud_devices/common", | 178 "//components/cloud_devices/common", |
| 182 "//components/component_updater", | 179 "//components/component_updater", |
| 183 "//components/content_settings/core/common", | 180 "//components/content_settings/core/common", |
| 184 "//components/crash/core/common", | 181 "//components/crash/core/common", |
| 185 "//components/dom_distiller/core", | 182 "//components/dom_distiller/core", |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 "shell_handler_win.mojom", | 672 "shell_handler_win.mojom", |
| 676 ] | 673 ] |
| 677 | 674 |
| 678 public_deps = [ | 675 public_deps = [ |
| 679 "//skia/public/interfaces", | 676 "//skia/public/interfaces", |
| 680 "//url/mojo:url_mojom_gurl", | 677 "//url/mojo:url_mojom_gurl", |
| 681 ] | 678 ] |
| 682 | 679 |
| 683 use_new_wrapper_types = false | 680 use_new_wrapper_types = false |
| 684 } | 681 } |
| OLD | NEW |