| 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/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
| 9 import("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| 11 | 11 |
| 12 gypi_values = exec_script("//build/gypi_to_gn.py", | |
| 13 [ rebase_path("../../chrome_browser_ui.gypi") ], | |
| 14 "scope", | |
| 15 [ "../../chrome_browser_ui.gypi" ]) | |
| 16 | |
| 17 config("ui_warnings") { | 12 config("ui_warnings") { |
| 18 if (is_clang) { | 13 if (is_clang) { |
| 19 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out | 14 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out |
| 20 cflags = [ "-Wno-nonnull" ] | 15 cflags = [ "-Wno-nonnull" ] |
| 21 } | 16 } |
| 22 } | 17 } |
| 23 | 18 |
| 24 # Use a static library here because many test binaries depend on this but don't | 19 # Use a static library here because many test binaries depend on this but don't |
| 25 # require many files from it. This makes linking more efficient. | 20 # require many files from it. This makes linking more efficient. |
| 26 split_static_library("ui") { | 21 split_static_library("ui") { |
| 27 # Split into multiple static libraries on Windows official builds, where we | 22 # Split into multiple static libraries on Windows official builds, where we |
| 28 # run into a 2GB max size limit. | 23 # run into a 2GB max size limit. |
| 29 if (is_win && is_official_build) { | 24 if (is_win && is_official_build) { |
| 30 split_count = 5 | 25 split_count = 5 |
| 31 } else { | 26 } else { |
| 32 split_count = 1 | 27 split_count = 1 |
| 33 } | 28 } |
| 34 | 29 |
| 35 sources = rebase_path(gypi_values.chrome_browser_ui_non_ios_sources, | 30 sources = [ |
| 36 ".", | 31 "accelerator_utils.h", |
| 37 "//chrome") | 32 "android/android_about_app_info.cc", |
| 38 sources += rebase_path(gypi_values.chrome_browser_ui_toolbar_model_sources, | 33 "android/android_about_app_info.h", |
| 39 ".", | 34 "android/external_protocol_dialog_android.cc", |
| 40 "//chrome") | 35 "android/status_tray_android.cc", |
| 36 "app_list/app_list_util.cc", |
| 37 "app_list/app_list_util.h", |
| 38 |
| 39 # All other browser/ui/app_list files go under enable_app_list below. |
| 40 "autofill/autofill_dialog_models.cc", |
| 41 "autofill/autofill_dialog_models.h", |
| 42 "autofill/autofill_popup_controller.h", |
| 43 "autofill/autofill_popup_controller_impl.cc", |
| 44 "autofill/autofill_popup_controller_impl.h", |
| 45 "autofill/autofill_popup_layout_model.cc", |
| 46 "autofill/autofill_popup_layout_model.h", |
| 47 "autofill/autofill_popup_view.h", |
| 48 "autofill/autofill_popup_view_delegate.h", |
| 49 "autofill/chrome_autofill_client.cc", |
| 50 "autofill/chrome_autofill_client.h", |
| 51 "autofill/country_combobox_model.cc", |
| 52 "autofill/country_combobox_model.h", |
| 53 "autofill/create_card_unmask_prompt_view.h", |
| 54 "autofill/credit_card_scanner_controller.cc", |
| 55 "autofill/credit_card_scanner_controller.h", |
| 56 "autofill/credit_card_scanner_view.cc", |
| 57 "autofill/credit_card_scanner_view.h", |
| 58 "autofill/credit_card_scanner_view_delegate.h", |
| 59 "autofill/password_generation_popup_controller.h", |
| 60 "autofill/password_generation_popup_controller_impl.cc", |
| 61 "autofill/password_generation_popup_controller_impl.h", |
| 62 "autofill/password_generation_popup_observer.h", |
| 63 "autofill/password_generation_popup_view.cc", |
| 64 "autofill/password_generation_popup_view.h", |
| 65 "autofill/popup_controller_common.cc", |
| 66 "autofill/popup_controller_common.h", |
| 67 "autofill/popup_view_common.cc", |
| 68 "autofill/popup_view_common.h", |
| 69 "blocked_content/blocked_window_params.cc", |
| 70 "blocked_content/blocked_window_params.h", |
| 71 "blocked_content/popup_blocker_tab_helper.cc", |
| 72 "blocked_content/popup_blocker_tab_helper.h", |
| 73 "bookmarks/bookmark_bar.h", |
| 74 "bookmarks/bookmark_bar_constants.h", |
| 75 "bookmarks/bookmark_bar_instructions_delegate.h", |
| 76 "bookmarks/bookmark_bubble_observer.h", |
| 77 "bookmarks/bookmark_editor.cc", |
| 78 "bookmarks/bookmark_editor.h", |
| 79 "bookmarks/bookmark_utils.cc", |
| 80 "bookmarks/bookmark_utils.h", |
| 81 "bookmarks/recently_used_folders_combo_model.cc", |
| 82 "bookmarks/recently_used_folders_combo_model.h", |
| 83 "browser_commands_chromeos.cc", |
| 84 "browser_commands_chromeos.h", |
| 85 "browser_commands_mac.cc", |
| 86 "browser_commands_mac.h", |
| 87 "browser_dialogs.h", |
| 88 "browser_mac.cc", |
| 89 "browser_mac.h", |
| 90 "browser_navigator_params.cc", |
| 91 "browser_navigator_params.h", |
| 92 "browser_ui_prefs.cc", |
| 93 "browser_ui_prefs.h", |
| 94 "chrome_select_file_policy.cc", |
| 95 "chrome_select_file_policy.h", |
| 96 "confirm_bubble.h", |
| 97 "crypto_module_password_dialog.h", |
| 98 "find_bar/find_bar.h", |
| 99 "find_bar/find_bar_state.h", |
| 100 "find_bar/find_bar_state_factory.cc", |
| 101 "find_bar/find_bar_state_factory.h", |
| 102 "find_bar/find_notification_details.h", |
| 103 "find_bar/find_tab_helper.cc", |
| 104 "find_bar/find_tab_helper.h", |
| 105 "javascript_dialogs/chrome_javascript_native_dialog_factory.h", |
| 106 "login/login_handler.cc", |
| 107 "login/login_handler.h", |
| 108 "login/login_interstitial_delegate.cc", |
| 109 "login/login_interstitial_delegate.h", |
| 110 "media_utils.cc", |
| 111 "media_utils.h", |
| 112 "navigation_correction_tab_observer.cc", |
| 113 "navigation_correction_tab_observer.h", |
| 114 "passwords/account_avatar_fetcher.cc", |
| 115 "passwords/account_avatar_fetcher.h", |
| 116 "passwords/manage_passwords_state.cc", |
| 117 "passwords/manage_passwords_state.h", |
| 118 "passwords/manage_passwords_view_utils.cc", |
| 119 "passwords/manage_passwords_view_utils.h", |
| 120 "passwords/password_manager_presenter.cc", |
| 121 "passwords/password_manager_presenter.h", |
| 122 "passwords/password_ui_view.h", |
| 123 "platform_keys_certificate_selector_chromeos.h", |
| 124 "prefs/prefs_tab_helper.cc", |
| 125 "prefs/prefs_tab_helper.h", |
| 126 "process_singleton_dialog_linux.h", |
| 127 "profile_chooser_constants.h", |
| 128 "profile_error_dialog.cc", |
| 129 "profile_error_dialog.h", |
| 130 "protocol_dialog_delegate.h", |
| 131 "proximity_auth/proximity_auth_error_bubble.h", |
| 132 "screen_capture_notification_ui.h", |
| 133 "search/instant_search_prerenderer.cc", |
| 134 "search/instant_search_prerenderer.h", |
| 135 "search/instant_tab.cc", |
| 136 "search/instant_tab.h", |
| 137 "search/new_tab_page_interceptor_service.cc", |
| 138 "search/new_tab_page_interceptor_service.h", |
| 139 "search/new_tab_page_interceptor_service_factory.cc", |
| 140 "search/new_tab_page_interceptor_service_factory.h", |
| 141 "search/search_ipc_router.cc", |
| 142 "search/search_ipc_router.h", |
| 143 "search/search_ipc_router_policy_impl.cc", |
| 144 "search/search_ipc_router_policy_impl.h", |
| 145 "search/search_model.cc", |
| 146 "search/search_model.h", |
| 147 "search/search_model_observer.h", |
| 148 "search/search_tab_helper.cc", |
| 149 "search/search_tab_helper.h", |
| 150 "search/search_tab_helper_delegate.cc", |
| 151 "search/search_tab_helper_delegate.h", |
| 152 "search_engines/edit_search_engine_controller.cc", |
| 153 "search_engines/edit_search_engine_controller.h", |
| 154 "search_engines/keyword_editor_controller.cc", |
| 155 "search_engines/keyword_editor_controller.h", |
| 156 "search_engines/search_engine_tab_helper.cc", |
| 157 "search_engines/search_engine_tab_helper.h", |
| 158 "search_engines/template_url_table_model.cc", |
| 159 "search_engines/template_url_table_model.h", |
| 160 "session_crashed_bubble.h", |
| 161 "simple_message_box.h", |
| 162 "simple_message_box_internal.cc", |
| 163 "simple_message_box_internal.h", |
| 164 "status_bubble.h", |
| 165 "sync/bubble_sync_promo_delegate.h", |
| 166 "sync/profile_signin_confirmation_helper.cc", |
| 167 "sync/profile_signin_confirmation_helper.h", |
| 168 "sync/tab_contents_synced_tab_delegate.cc", |
| 169 "sync/tab_contents_synced_tab_delegate.h", |
| 170 "tab_contents/chrome_web_contents_view_delegate.h", |
| 171 "tab_contents/core_tab_helper.cc", |
| 172 "tab_contents/core_tab_helper.h", |
| 173 "tab_contents/core_tab_helper_delegate.cc", |
| 174 "tab_contents/core_tab_helper_delegate.h", |
| 175 "tab_dialogs.cc", |
| 176 "tab_dialogs.h", |
| 177 "tab_helpers.cc", |
| 178 "tab_helpers.h", |
| 179 "tab_modal_confirm_dialog.h", |
| 180 "toolbar/chrome_toolbar_model_delegate.cc", |
| 181 "toolbar/chrome_toolbar_model_delegate.h", |
| 182 "translate/language_combobox_model.cc", |
| 183 "translate/language_combobox_model.h", |
| 184 "translate/translate_bubble_model.h", |
| 185 "translate/translate_bubble_model_impl.cc", |
| 186 "translate/translate_bubble_model_impl.h", |
| 187 "translate/translate_bubble_view_state_transition.cc", |
| 188 "translate/translate_bubble_view_state_transition.h", |
| 189 "uninstall_browser_prompt.h", |
| 190 "validation_message_bubble.h", |
| 191 "view_ids.h", |
| 192 "views/platform_keys_certificate_selector_chromeos.cc", |
| 193 "views/platform_keys_certificate_selector_chromeos.h", |
| 194 "web_contents_sizer.h", |
| 195 "website_settings/website_settings.cc", |
| 196 "website_settings/website_settings.h", |
| 197 "website_settings/website_settings_ui.cc", |
| 198 "website_settings/website_settings_ui.h", |
| 199 "webui/about_ui.cc", |
| 200 "webui/about_ui.h", |
| 201 "webui/browsing_history_handler.cc", |
| 202 "webui/browsing_history_handler.h", |
| 203 "webui/chrome_web_ui_controller_factory.cc", |
| 204 "webui/chrome_web_ui_controller_factory.h", |
| 205 "webui/chromeos/bluetooth_pairing_ui.cc", |
| 206 "webui/chromeos/bluetooth_pairing_ui.h", |
| 207 "webui/chromeos/certificate_manager_dialog_ui.cc", |
| 208 "webui/chromeos/certificate_manager_dialog_ui.h", |
| 209 "webui/chromeos/choose_mobile_network_ui.cc", |
| 210 "webui/chromeos/choose_mobile_network_ui.h", |
| 211 "webui/chromeos/cryptohome_ui.cc", |
| 212 "webui/chromeos/cryptohome_ui.h", |
| 213 "webui/chromeos/cryptohome_web_ui_handler.cc", |
| 214 "webui/chromeos/cryptohome_web_ui_handler.h", |
| 215 "webui/chromeos/drive_internals_ui.cc", |
| 216 "webui/chromeos/drive_internals_ui.h", |
| 217 "webui/chromeos/first_run/first_run_actor.cc", |
| 218 "webui/chromeos/first_run/first_run_actor.h", |
| 219 "webui/chromeos/first_run/first_run_handler.cc", |
| 220 "webui/chromeos/first_run/first_run_handler.h", |
| 221 "webui/chromeos/first_run/first_run_ui.cc", |
| 222 "webui/chromeos/first_run/first_run_ui.h", |
| 223 "webui/chromeos/image_source.cc", |
| 224 "webui/chromeos/image_source.h", |
| 225 "webui/chromeos/keyboard_overlay_ui.cc", |
| 226 "webui/chromeos/keyboard_overlay_ui.h", |
| 227 "webui/chromeos/login/app_launch_splash_screen_handler.cc", |
| 228 "webui/chromeos/login/app_launch_splash_screen_handler.h", |
| 229 "webui/chromeos/login/authenticated_user_email_retriever.cc", |
| 230 "webui/chromeos/login/authenticated_user_email_retriever.h", |
| 231 "webui/chromeos/login/auto_enrollment_check_screen_handler.cc", |
| 232 "webui/chromeos/login/auto_enrollment_check_screen_handler.h", |
| 233 "webui/chromeos/login/base_screen_handler.cc", |
| 234 "webui/chromeos/login/base_screen_handler.h", |
| 235 "webui/chromeos/login/controller_pairing_screen_handler.cc", |
| 236 "webui/chromeos/login/controller_pairing_screen_handler.h", |
| 237 "webui/chromeos/login/core_oobe_handler.cc", |
| 238 "webui/chromeos/login/core_oobe_handler.h", |
| 239 "webui/chromeos/login/demo_mode_detector.cc", |
| 240 "webui/chromeos/login/demo_mode_detector.h", |
| 241 "webui/chromeos/login/device_disabled_screen_handler.cc", |
| 242 "webui/chromeos/login/device_disabled_screen_handler.h", |
| 243 "webui/chromeos/login/enable_debugging_screen_handler.cc", |
| 244 "webui/chromeos/login/enable_debugging_screen_handler.h", |
| 245 "webui/chromeos/login/enrollment_screen_handler.cc", |
| 246 "webui/chromeos/login/enrollment_screen_handler.h", |
| 247 "webui/chromeos/login/error_screen_handler.cc", |
| 248 "webui/chromeos/login/error_screen_handler.h", |
| 249 "webui/chromeos/login/eula_screen_handler.cc", |
| 250 "webui/chromeos/login/eula_screen_handler.h", |
| 251 "webui/chromeos/login/gaia_screen_handler.cc", |
| 252 "webui/chromeos/login/gaia_screen_handler.h", |
| 253 "webui/chromeos/login/hid_detection_screen_handler.cc", |
| 254 "webui/chromeos/login/hid_detection_screen_handler.h", |
| 255 "webui/chromeos/login/host_pairing_screen_handler.cc", |
| 256 "webui/chromeos/login/host_pairing_screen_handler.h", |
| 257 "webui/chromeos/login/kiosk_app_menu_handler.cc", |
| 258 "webui/chromeos/login/kiosk_app_menu_handler.h", |
| 259 "webui/chromeos/login/kiosk_autolaunch_screen_handler.cc", |
| 260 "webui/chromeos/login/kiosk_autolaunch_screen_handler.h", |
| 261 "webui/chromeos/login/kiosk_enable_screen_handler.cc", |
| 262 "webui/chromeos/login/kiosk_enable_screen_handler.h", |
| 263 "webui/chromeos/login/l10n_util.cc", |
| 264 "webui/chromeos/login/l10n_util.h", |
| 265 "webui/chromeos/login/network_dropdown.cc", |
| 266 "webui/chromeos/login/network_dropdown.h", |
| 267 "webui/chromeos/login/network_dropdown_handler.cc", |
| 268 "webui/chromeos/login/network_dropdown_handler.h", |
| 269 "webui/chromeos/login/network_screen_handler.cc", |
| 270 "webui/chromeos/login/network_screen_handler.h", |
| 271 "webui/chromeos/login/network_state_informer.cc", |
| 272 "webui/chromeos/login/network_state_informer.h", |
| 273 "webui/chromeos/login/oobe_screen.cc", |
| 274 "webui/chromeos/login/oobe_screen.h", |
| 275 "webui/chromeos/login/oobe_ui.cc", |
| 276 "webui/chromeos/login/oobe_ui.h", |
| 277 "webui/chromeos/login/reset_screen_handler.cc", |
| 278 "webui/chromeos/login/reset_screen_handler.h", |
| 279 "webui/chromeos/login/screenlock_icon_provider.cc", |
| 280 "webui/chromeos/login/screenlock_icon_provider.h", |
| 281 "webui/chromeos/login/screenlock_icon_source.cc", |
| 282 "webui/chromeos/login/screenlock_icon_source.h", |
| 283 "webui/chromeos/login/signin_screen_handler.cc", |
| 284 "webui/chromeos/login/signin_screen_handler.h", |
| 285 "webui/chromeos/login/supervised_user_creation_screen_handler.cc", |
| 286 "webui/chromeos/login/supervised_user_creation_screen_handler.h", |
| 287 "webui/chromeos/login/terms_of_service_screen_handler.cc", |
| 288 "webui/chromeos/login/terms_of_service_screen_handler.h", |
| 289 "webui/chromeos/login/update_screen_handler.cc", |
| 290 "webui/chromeos/login/update_screen_handler.h", |
| 291 "webui/chromeos/login/user_board_screen_handler.cc", |
| 292 "webui/chromeos/login/user_board_screen_handler.h", |
| 293 "webui/chromeos/login/user_image_screen_handler.cc", |
| 294 "webui/chromeos/login/user_image_screen_handler.h", |
| 295 "webui/chromeos/login/wrong_hwid_screen_handler.cc", |
| 296 "webui/chromeos/login/wrong_hwid_screen_handler.h", |
| 297 "webui/chromeos/mobile_setup_dialog.cc", |
| 298 "webui/chromeos/mobile_setup_dialog.h", |
| 299 "webui/chromeos/mobile_setup_ui.cc", |
| 300 "webui/chromeos/mobile_setup_ui.h", |
| 301 "webui/chromeos/network_ui.cc", |
| 302 "webui/chromeos/network_ui.h", |
| 303 "webui/chromeos/power_ui.cc", |
| 304 "webui/chromeos/power_ui.h", |
| 305 "webui/chromeos/proxy_settings_ui.cc", |
| 306 "webui/chromeos/proxy_settings_ui.h", |
| 307 "webui/chromeos/set_time_ui.cc", |
| 308 "webui/chromeos/set_time_ui.h", |
| 309 "webui/chromeos/sim_unlock_ui.cc", |
| 310 "webui/chromeos/sim_unlock_ui.h", |
| 311 "webui/chromeos/slow_trace_ui.cc", |
| 312 "webui/chromeos/slow_trace_ui.h", |
| 313 "webui/chromeos/slow_ui.cc", |
| 314 "webui/chromeos/slow_ui.h", |
| 315 "webui/chromeos/touch_view_controller_delegate.cc", |
| 316 "webui/chromeos/touch_view_controller_delegate.h", |
| 317 "webui/chromeos/ui_account_tweaks.cc", |
| 318 "webui/chromeos/ui_account_tweaks.h", |
| 319 "webui/components_ui.cc", |
| 320 "webui/components_ui.h", |
| 321 "webui/constrained_web_dialog_ui.cc", |
| 322 "webui/constrained_web_dialog_ui.h", |
| 323 "webui/cookies_tree_model_util.cc", |
| 324 "webui/cookies_tree_model_util.h", |
| 325 "webui/crashes_ui.cc", |
| 326 "webui/crashes_ui.h", |
| 327 "webui/device_log_ui.cc", |
| 328 "webui/device_log_ui.h", |
| 329 "webui/domain_reliability_internals_ui.cc", |
| 330 "webui/domain_reliability_internals_ui.h", |
| 331 "webui/engagement/site_engagement_ui.cc", |
| 332 "webui/engagement/site_engagement_ui.h", |
| 333 "webui/fallback_icon_source.cc", |
| 334 "webui/fallback_icon_source.h", |
| 335 "webui/favicon_source.cc", |
| 336 "webui/favicon_source.h", |
| 337 "webui/fileicon_source.cc", |
| 338 "webui/fileicon_source.h", |
| 339 "webui/flags_ui.cc", |
| 340 "webui/flags_ui.h", |
| 341 "webui/gcm_internals_ui.cc", |
| 342 "webui/gcm_internals_ui.h", |
| 343 "webui/history_ui.cc", |
| 344 "webui/history_ui.h", |
| 345 "webui/instant_ui.cc", |
| 346 "webui/instant_ui.h", |
| 347 "webui/interstitials/interstitial_ui.cc", |
| 348 "webui/interstitials/interstitial_ui.h", |
| 349 "webui/invalidations_message_handler.cc", |
| 350 "webui/invalidations_message_handler.h", |
| 351 "webui/invalidations_ui.cc", |
| 352 "webui/invalidations_ui.h", |
| 353 "webui/large_icon_source.cc", |
| 354 "webui/large_icon_source.h", |
| 355 "webui/local_state/local_state_ui.cc", |
| 356 "webui/local_state/local_state_ui.h", |
| 357 "webui/log_web_ui_url.cc", |
| 358 "webui/log_web_ui_url.h", |
| 359 "webui/metrics_handler.cc", |
| 360 "webui/metrics_handler.h", |
| 361 "webui/mojo_web_ui_controller.cc", |
| 362 "webui/mojo_web_ui_controller.h", |
| 363 "webui/mojo_web_ui_handler.h", |
| 364 "webui/net_export_ui.cc", |
| 365 "webui/net_export_ui.h", |
| 366 "webui/net_internals/net_internals_ui.cc", |
| 367 "webui/net_internals/net_internals_ui.h", |
| 368 "webui/ntp/ntp_user_data_logger.cc", |
| 369 "webui/ntp/ntp_user_data_logger.h", |
| 370 "webui/omnibox/omnibox_page_handler.cc", |
| 371 "webui/omnibox/omnibox_page_handler.h", |
| 372 "webui/omnibox/omnibox_ui.cc", |
| 373 "webui/omnibox/omnibox_ui.h", |
| 374 "webui/password_manager_internals/password_manager_internals_ui.cc", |
| 375 "webui/password_manager_internals/password_manager_internals_ui.h", |
| 376 "webui/policy_material_design_ui.cc", |
| 377 "webui/policy_material_design_ui.h", |
| 378 "webui/policy_ui.cc", |
| 379 "webui/policy_ui.h", |
| 380 "webui/policy_ui_handler.cc", |
| 381 "webui/policy_ui_handler.h", |
| 382 "webui/predictors/predictors_handler.cc", |
| 383 "webui/predictors/predictors_handler.h", |
| 384 "webui/predictors/predictors_ui.cc", |
| 385 "webui/predictors/predictors_ui.h", |
| 386 "webui/profiler_ui.cc", |
| 387 "webui/profiler_ui.h", |
| 388 "webui/signin_internals_ui.cc", |
| 389 "webui/signin_internals_ui.h", |
| 390 "webui/supervised_user_internals_message_handler.cc", |
| 391 "webui/supervised_user_internals_message_handler.h", |
| 392 "webui/supervised_user_internals_ui.cc", |
| 393 "webui/supervised_user_internals_ui.h", |
| 394 "webui/sync_internals_message_handler.cc", |
| 395 "webui/sync_internals_message_handler.h", |
| 396 "webui/sync_internals_ui.cc", |
| 397 "webui/sync_internals_ui.h", |
| 398 "webui/test_files_request_filter.cc", |
| 399 "webui/test_files_request_filter.h", |
| 400 "webui/translate_internals/translate_internals_handler.cc", |
| 401 "webui/translate_internals/translate_internals_handler.h", |
| 402 "webui/translate_internals/translate_internals_ui.cc", |
| 403 "webui/translate_internals/translate_internals_ui.h", |
| 404 "webui/usb_internals/usb_internals_page_handler.cc", |
| 405 "webui/usb_internals/usb_internals_page_handler.h", |
| 406 "webui/usb_internals/usb_internals_ui.cc", |
| 407 "webui/usb_internals/usb_internals_ui.h", |
| 408 "webui/user_actions/user_actions_ui.cc", |
| 409 "webui/user_actions/user_actions_ui.h", |
| 410 "webui/user_actions/user_actions_ui_handler.cc", |
| 411 "webui/user_actions/user_actions_ui_handler.h", |
| 412 "webui/version_handler.cc", |
| 413 "webui/version_handler.h", |
| 414 "webui/version_handler_chromeos.cc", |
| 415 "webui/version_handler_chromeos.h", |
| 416 "webui/version_ui.cc", |
| 417 "webui/version_ui.h", |
| 418 "window_sizer/window_sizer_mac.mm", |
| 419 "zoom/chrome_zoom_level_otr_delegate.cc", |
| 420 "zoom/chrome_zoom_level_otr_delegate.h", |
| 421 "zoom/chrome_zoom_level_prefs.cc", |
| 422 "zoom/chrome_zoom_level_prefs.h", |
| 423 ] |
| 424 |
| 41 defines = [] | 425 defines = [] |
| 42 libs = [] | 426 libs = [] |
| 43 | 427 |
| 44 configs += [ | 428 configs += [ |
| 45 ":ui_warnings", | 429 ":ui_warnings", |
| 46 "//build/config:precompiled_headers", | 430 "//build/config:precompiled_headers", |
| 47 "//build/config/compiler:wexit_time_destructors", | 431 "//build/config/compiler:wexit_time_destructors", |
| 48 "//third_party/WebKit/public:debug_devtools", | 432 "//third_party/WebKit/public:debug_devtools", |
| 49 ] | 433 ] |
| 50 | 434 |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 "//components/drive", | 599 "//components/drive", |
| 216 "//extensions/browser", | 600 "//extensions/browser", |
| 217 ] | 601 ] |
| 218 } | 602 } |
| 219 | 603 |
| 220 if (is_chromeos && use_cras) { | 604 if (is_chromeos && use_cras) { |
| 221 defines += [ "USE_CRAS" ] | 605 defines += [ "USE_CRAS" ] |
| 222 } | 606 } |
| 223 | 607 |
| 224 if (!android_java_ui) { | 608 if (!android_java_ui) { |
| 225 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources, | 609 sources += [ |
| 226 ".", | 610 "apps/app_info_dialog.h", |
| 227 "//chrome") | 611 "apps/chrome_app_delegate.cc", |
| 228 sources += | 612 "apps/chrome_app_delegate.h", |
| 229 rebase_path(gypi_values.chrome_browser_ui_omnibox_non_mobile_sources, | 613 "apps/chrome_app_window_client.cc", |
| 230 ".", | 614 "apps/chrome_app_window_client.h", |
| 231 "//chrome") | 615 "apps/directory_access_confirmation_dialog.cc", |
| 616 "apps/directory_access_confirmation_dialog.h", |
| 617 "blocked_content/app_modal_dialog_helper.cc", |
| 618 "blocked_content/app_modal_dialog_helper.h", |
| 619 "bluetooth/bluetooth_chooser_controller.cc", |
| 620 "bluetooth/bluetooth_chooser_controller.h", |
| 621 "bluetooth/bluetooth_chooser_desktop.cc", |
| 622 "bluetooth/bluetooth_chooser_desktop.h", |
| 623 "bluetooth/chrome_extension_bluetooth_chooser.cc", |
| 624 "bluetooth/chrome_extension_bluetooth_chooser.h", |
| 625 "bookmarks/bookmark_bubble_sign_in_delegate.cc", |
| 626 "bookmarks/bookmark_bubble_sign_in_delegate.h", |
| 627 "bookmarks/bookmark_context_menu_controller.cc", |
| 628 "bookmarks/bookmark_context_menu_controller.h", |
| 629 "bookmarks/bookmark_drag_drop.cc", |
| 630 "bookmarks/bookmark_drag_drop.h", |
| 631 "bookmarks/bookmark_tab_helper.cc", |
| 632 "bookmarks/bookmark_tab_helper.h", |
| 633 "bookmarks/bookmark_tab_helper_delegate.cc", |
| 634 "bookmarks/bookmark_tab_helper_delegate.h", |
| 635 "bookmarks/bookmark_utils_desktop.cc", |
| 636 "bookmarks/bookmark_utils_desktop.h", |
| 637 "bookmarks/enhanced_bookmark_key_service.cc", |
| 638 "bookmarks/enhanced_bookmark_key_service.h", |
| 639 "bookmarks/enhanced_bookmark_key_service_factory.cc", |
| 640 "bookmarks/enhanced_bookmark_key_service_factory.h", |
| 641 "browser.cc", |
| 642 "browser.h", |
| 643 "browser_command_controller.cc", |
| 644 "browser_command_controller.h", |
| 645 "browser_commands.cc", |
| 646 "browser_commands.h", |
| 647 "browser_content_setting_bubble_model_delegate.cc", |
| 648 "browser_content_setting_bubble_model_delegate.h", |
| 649 "browser_finder.cc", |
| 650 "browser_finder.h", |
| 651 "browser_instant_controller.cc", |
| 652 "browser_instant_controller.h", |
| 653 "browser_list.cc", |
| 654 "browser_list.h", |
| 655 "browser_live_tab_context.cc", |
| 656 "browser_live_tab_context.h", |
| 657 "browser_navigator.cc", |
| 658 "browser_navigator.h", |
| 659 "browser_otr_state.cc", |
| 660 "browser_otr_state.h", |
| 661 "browser_tab_restorer.cc", |
| 662 "browser_tab_strip_model_delegate.cc", |
| 663 "browser_tab_strip_model_delegate.h", |
| 664 "browser_tab_strip_tracker.cc", |
| 665 "browser_tab_strip_tracker.h", |
| 666 "browser_tab_strip_tracker_delegate.h", |
| 667 "browser_tabrestore.cc", |
| 668 "browser_tabrestore.h", |
| 669 "browser_tabstrip.cc", |
| 670 "browser_tabstrip.h", |
| 671 "browser_toolbar_model_delegate.cc", |
| 672 "browser_toolbar_model_delegate.h", |
| 673 "browser_view_prefs.cc", |
| 674 "browser_view_prefs.h", |
| 675 "browser_window_state.cc", |
| 676 "browser_window_state.h", |
| 677 "chrome_bubble_manager.cc", |
| 678 "chrome_bubble_manager.h", |
| 679 "chrome_pages.cc", |
| 680 "chrome_pages.h", |
| 681 "chrome_web_modal_dialog_manager_delegate.cc", |
| 682 "chrome_web_modal_dialog_manager_delegate.h", |
| 683 "collected_cookies_infobar_delegate.cc", |
| 684 "collected_cookies_infobar_delegate.h", |
| 685 "confirm_bubble_model.cc", |
| 686 "confirm_bubble_model.h", |
| 687 "content_settings/content_setting_bubble_model.cc", |
| 688 "content_settings/content_setting_bubble_model.h", |
| 689 "content_settings/content_setting_bubble_model_delegate.h", |
| 690 "content_settings/content_setting_image_model.cc", |
| 691 "content_settings/content_setting_image_model.h", |
| 692 "exclusive_access/exclusive_access_bubble.cc", |
| 693 "exclusive_access/exclusive_access_bubble.h", |
| 694 "exclusive_access/exclusive_access_bubble_type.cc", |
| 695 "exclusive_access/exclusive_access_bubble_type.h", |
| 696 "exclusive_access/exclusive_access_context.cc", |
| 697 "exclusive_access/exclusive_access_context.h", |
| 698 "exclusive_access/exclusive_access_controller_base.cc", |
| 699 "exclusive_access/exclusive_access_controller_base.h", |
| 700 "exclusive_access/exclusive_access_manager.cc", |
| 701 "exclusive_access/exclusive_access_manager.h", |
| 702 "exclusive_access/fullscreen_controller.cc", |
| 703 "exclusive_access/fullscreen_controller.h", |
| 704 "exclusive_access/fullscreen_within_tab_helper.cc", |
| 705 "exclusive_access/fullscreen_within_tab_helper.h", |
| 706 "exclusive_access/mouse_lock_controller.cc", |
| 707 "exclusive_access/mouse_lock_controller.h", |
| 708 "fast_unload_controller.cc", |
| 709 "fast_unload_controller.h", |
| 710 "find_bar/find_bar_controller.cc", |
| 711 "find_bar/find_bar_controller.h", |
| 712 "global_error/global_error.cc", |
| 713 "global_error/global_error.h", |
| 714 "global_error/global_error_bubble_view_base.h", |
| 715 "global_error/global_error_service.cc", |
| 716 "global_error/global_error_service.h", |
| 717 "global_error/global_error_service_factory.cc", |
| 718 "global_error/global_error_service_factory.h", |
| 719 "infobar_container_delegate.cc", |
| 720 "infobar_container_delegate.h", |
| 721 "layout_constants.cc", |
| 722 "layout_constants.h", |
| 723 "location_bar/location_bar.cc", |
| 724 "location_bar/location_bar.h", |
| 725 "location_bar/location_bar_util.cc", |
| 726 "location_bar/location_bar_util.h", |
| 727 "native_window_tracker.h", |
| 728 "omnibox/alternate_nav_infobar_delegate.cc", |
| 729 "omnibox/alternate_nav_infobar_delegate.h", |
| 730 "omnibox/chrome_omnibox_client.cc", |
| 731 "omnibox/chrome_omnibox_client.h", |
| 732 "omnibox/chrome_omnibox_edit_controller.cc", |
| 733 "omnibox/chrome_omnibox_edit_controller.h", |
| 734 "omnibox/chrome_omnibox_navigation_observer.cc", |
| 735 "omnibox/chrome_omnibox_navigation_observer.h", |
| 736 "omnibox/clipboard_utils.cc", |
| 737 "omnibox/clipboard_utils.h", |
| 738 "passwords/manage_passwords_bubble_model.cc", |
| 739 "passwords/manage_passwords_bubble_model.h", |
| 740 "passwords/manage_passwords_icon_view.h", |
| 741 "passwords/manage_passwords_ui_controller.cc", |
| 742 "passwords/manage_passwords_ui_controller.h", |
| 743 "passwords/manage_passwords_view_utils_desktop.cc", |
| 744 "passwords/manage_passwords_view_utils_desktop.h", |
| 745 "passwords/password_dialog_controller.h", |
| 746 "passwords/password_dialog_controller_impl.cc", |
| 747 "passwords/password_dialog_controller_impl.h", |
| 748 "passwords/password_dialog_prompts.h", |
| 749 "passwords/passwords_client_ui_delegate.cc", |
| 750 "passwords/passwords_client_ui_delegate.h", |
| 751 "passwords/passwords_model_delegate.cc", |
| 752 "passwords/passwords_model_delegate.h", |
| 753 "pdf/adobe_reader_info_win.cc", |
| 754 "pdf/adobe_reader_info_win.h", |
| 755 "pdf/chrome_pdf_web_contents_helper_client.cc", |
| 756 "pdf/chrome_pdf_web_contents_helper_client.h", |
| 757 "pdf/pdf_unsupported_feature.cc", |
| 758 "pdf/pdf_unsupported_feature.h", |
| 759 "sad_tab.cc", |
| 760 "sad_tab.h", |
| 761 "sad_tab_helper.cc", |
| 762 "sad_tab_helper.h", |
| 763 "sad_tab_types.h", |
| 764 "scoped_tabbed_browser_displayer.cc", |
| 765 "scoped_tabbed_browser_displayer.h", |
| 766 "search/instant_controller.cc", |
| 767 "search/instant_controller.h", |
| 768 "search/search_delegate.cc", |
| 769 "search/search_delegate.h", |
| 770 "settings_window_manager.cc", |
| 771 "settings_window_manager.h", |
| 772 "settings_window_manager_observer.h", |
| 773 "signin_view_controller.cc", |
| 774 "signin_view_controller.h", |
| 775 "signin_view_controller_delegate.cc", |
| 776 "signin_view_controller_delegate.h", |
| 777 "singleton_tabs.cc", |
| 778 "singleton_tabs.h", |
| 779 "startup/bad_flags_prompt.cc", |
| 780 "startup/bad_flags_prompt.h", |
| 781 "startup/google_api_keys_infobar_delegate.cc", |
| 782 "startup/google_api_keys_infobar_delegate.h", |
| 783 "startup/obsolete_system_infobar_delegate.cc", |
| 784 "startup/obsolete_system_infobar_delegate.h", |
| 785 "startup/session_crashed_infobar_delegate.cc", |
| 786 "startup/session_crashed_infobar_delegate.h", |
| 787 "startup/startup_browser_creator.cc", |
| 788 "startup/startup_browser_creator.h", |
| 789 "startup/startup_browser_creator_impl.cc", |
| 790 "startup/startup_browser_creator_impl.h", |
| 791 "startup/startup_tab.cc", |
| 792 "startup/startup_tab.h", |
| 793 "startup/startup_types.h", |
| 794 "sync/browser_synced_window_delegate.cc", |
| 795 "sync/browser_synced_window_delegate.h", |
| 796 "sync/browser_synced_window_delegates_getter.cc", |
| 797 "sync/browser_synced_window_delegates_getter.h", |
| 798 "sync/sync_promo_ui.cc", |
| 799 "sync/sync_promo_ui.h", |
| 800 "tab_contents/tab_contents_iterator.cc", |
| 801 "tab_contents/tab_contents_iterator.h", |
| 802 "tab_modal_confirm_dialog_delegate.cc", |
| 803 "tab_modal_confirm_dialog_delegate.h", |
| 804 "tabs/hover_tab_selector.cc", |
| 805 "tabs/hover_tab_selector.h", |
| 806 "tabs/pinned_tab_codec.cc", |
| 807 "tabs/pinned_tab_codec.h", |
| 808 "tabs/pinned_tab_service.cc", |
| 809 "tabs/pinned_tab_service.h", |
| 810 "tabs/pinned_tab_service_factory.cc", |
| 811 "tabs/pinned_tab_service_factory.h", |
| 812 "tabs/tab_menu_model.cc", |
| 813 "tabs/tab_menu_model.h", |
| 814 "tabs/tab_strip_model.cc", |
| 815 "tabs/tab_strip_model.h", |
| 816 "tabs/tab_strip_model_delegate.h", |
| 817 "tabs/tab_strip_model_observer.cc", |
| 818 "tabs/tab_strip_model_observer.h", |
| 819 "tabs/tab_strip_model_order_controller.cc", |
| 820 "tabs/tab_strip_model_order_controller.h", |
| 821 "tabs/tab_strip_model_stats_recorder.cc", |
| 822 "tabs/tab_strip_model_stats_recorder.h", |
| 823 "tabs/tab_strip_model_utils.cc", |
| 824 "tabs/tab_strip_model_utils.h", |
| 825 "tabs/tab_utils.cc", |
| 826 "tabs/tab_utils.h", |
| 827 "task_manager/task_manager_columns.cc", |
| 828 "task_manager/task_manager_columns.h", |
| 829 "task_manager/task_manager_table_model.cc", |
| 830 "task_manager/task_manager_table_model.h", |
| 831 "toolbar/app_menu_icon_controller.cc", |
| 832 "toolbar/app_menu_icon_controller.h", |
| 833 "toolbar/app_menu_icon_painter.cc", |
| 834 "toolbar/app_menu_icon_painter.h", |
| 835 "toolbar/app_menu_model.cc", |
| 836 "toolbar/app_menu_model.h", |
| 837 "toolbar/back_forward_menu_model.cc", |
| 838 "toolbar/back_forward_menu_model.h", |
| 839 "toolbar/bookmark_sub_menu_model.cc", |
| 840 "toolbar/bookmark_sub_menu_model.h", |
| 841 "toolbar/component_toolbar_actions_factory.cc", |
| 842 "toolbar/component_toolbar_actions_factory.h", |
| 843 "toolbar/recent_tabs_sub_menu_model.cc", |
| 844 "toolbar/recent_tabs_sub_menu_model.h", |
| 845 "toolbar/toolbar_action_view_controller.h", |
| 846 "toolbar/toolbar_action_view_delegate.h", |
| 847 "toolbar/toolbar_actions_bar.cc", |
| 848 "toolbar/toolbar_actions_bar.h", |
| 849 "toolbar/toolbar_actions_bar_bubble_delegate.h", |
| 850 "toolbar/toolbar_actions_bar_delegate.h", |
| 851 "toolbar/toolbar_actions_bar_observer.h", |
| 852 "translate/translate_bubble_factory.cc", |
| 853 "translate/translate_bubble_factory.h", |
| 854 "uma_browsing_activity_observer.cc", |
| 855 "uma_browsing_activity_observer.h", |
| 856 "unload_controller.cc", |
| 857 "unload_controller.h", |
| 858 "user_manager.cc", |
| 859 "user_manager.h", |
| 860 "website_settings/chooser_bubble_delegate.cc", |
| 861 "website_settings/chooser_bubble_delegate.h", |
| 862 "website_settings/permission_menu_model.cc", |
| 863 "website_settings/permission_menu_model.h", |
| 864 "website_settings/permission_prompt.h", |
| 865 "website_settings/website_settings_infobar_delegate.cc", |
| 866 "website_settings/website_settings_infobar_delegate.h", |
| 867 "webui/app_launcher_login_handler.cc", |
| 868 "webui/app_launcher_login_handler.h", |
| 869 "webui/bookmarks_ui.cc", |
| 870 "webui/bookmarks_ui.h", |
| 871 "webui/chrome_web_contents_handler.cc", |
| 872 "webui/chrome_web_contents_handler.h", |
| 873 "webui/constrained_web_dialog_delegate_base.cc", |
| 874 "webui/constrained_web_dialog_delegate_base.h", |
| 875 "webui/devtools_ui.cc", |
| 876 "webui/devtools_ui.h", |
| 877 "webui/extensions/extension_loader_handler.cc", |
| 878 "webui/extensions/extension_loader_handler.h", |
| 879 "webui/extensions/extension_settings_handler.cc", |
| 880 "webui/extensions/extension_settings_handler.h", |
| 881 "webui/extensions/extensions_ui.cc", |
| 882 "webui/extensions/extensions_ui.h", |
| 883 "webui/extensions/install_extension_handler.cc", |
| 884 "webui/extensions/install_extension_handler.h", |
| 885 "webui/foreign_session_handler.cc", |
| 886 "webui/foreign_session_handler.h", |
| 887 "webui/help/help_handler.cc", |
| 888 "webui/help/help_handler.h", |
| 889 "webui/help/help_ui.cc", |
| 890 "webui/help/help_ui.h", |
| 891 "webui/help/help_utils_chromeos.cc", |
| 892 "webui/help/help_utils_chromeos.h", |
| 893 "webui/help/version_updater.h", |
| 894 "webui/help/version_updater_chromeos.cc", |
| 895 "webui/help/version_updater_chromeos.h", |
| 896 "webui/help/version_updater_mac.h", |
| 897 "webui/help/version_updater_mac.mm", |
| 898 "webui/help/version_updater_win.cc", |
| 899 "webui/history_login_handler.cc", |
| 900 "webui/history_login_handler.h", |
| 901 "webui/identity_internals_ui.cc", |
| 902 "webui/identity_internals_ui.h", |
| 903 "webui/inspect_ui.cc", |
| 904 "webui/inspect_ui.h", |
| 905 "webui/md_downloads/downloads_list_tracker.cc", |
| 906 "webui/md_downloads/downloads_list_tracker.h", |
| 907 "webui/md_downloads/md_downloads_dom_handler.cc", |
| 908 "webui/md_downloads/md_downloads_dom_handler.h", |
| 909 "webui/md_downloads/md_downloads_ui.cc", |
| 910 "webui/md_downloads/md_downloads_ui.h", |
| 911 "webui/md_feedback/md_feedback_dialog_controller.cc", |
| 912 "webui/md_feedback/md_feedback_dialog_controller.h", |
| 913 "webui/md_feedback/md_feedback_ui.cc", |
| 914 "webui/md_feedback/md_feedback_ui.h", |
| 915 "webui/md_history_ui.cc", |
| 916 "webui/md_history_ui.h", |
| 917 "webui/ntp/app_launcher_handler.cc", |
| 918 "webui/ntp/app_launcher_handler.h", |
| 919 "webui/ntp/app_resource_cache_factory.cc", |
| 920 "webui/ntp/app_resource_cache_factory.h", |
| 921 "webui/ntp/core_app_launcher_handler.cc", |
| 922 "webui/ntp/core_app_launcher_handler.h", |
| 923 "webui/ntp/favicon_webui_handler.cc", |
| 924 "webui/ntp/favicon_webui_handler.h", |
| 925 "webui/ntp/new_tab_ui.cc", |
| 926 "webui/ntp/new_tab_ui.h", |
| 927 "webui/ntp/ntp_resource_cache.cc", |
| 928 "webui/ntp/ntp_resource_cache.h", |
| 929 "webui/ntp/ntp_resource_cache_factory.cc", |
| 930 "webui/ntp/ntp_resource_cache_factory.h", |
| 931 "webui/options/autofill_options_handler.cc", |
| 932 "webui/options/autofill_options_handler.h", |
| 933 "webui/options/automatic_settings_reset_handler.cc", |
| 934 "webui/options/automatic_settings_reset_handler.h", |
| 935 "webui/options/browser_options_handler.cc", |
| 936 "webui/options/browser_options_handler.h", |
| 937 "webui/options/chromeos/accounts_options_handler.cc", |
| 938 "webui/options/chromeos/accounts_options_handler.h", |
| 939 "webui/options/chromeos/bluetooth_options_handler.cc", |
| 940 "webui/options/chromeos/bluetooth_options_handler.h", |
| 941 "webui/options/chromeos/change_picture_options_handler.cc", |
| 942 "webui/options/chromeos/change_picture_options_handler.h", |
| 943 "webui/options/chromeos/core_chromeos_options_handler.cc", |
| 944 "webui/options/chromeos/core_chromeos_options_handler.h", |
| 945 "webui/options/chromeos/cros_language_options_handler.cc", |
| 946 "webui/options/chromeos/cros_language_options_handler.h", |
| 947 "webui/options/chromeos/date_time_options_handler.cc", |
| 948 "webui/options/chromeos/date_time_options_handler.h", |
| 949 "webui/options/chromeos/display_options_handler.cc", |
| 950 "webui/options/chromeos/display_options_handler.h", |
| 951 "webui/options/chromeos/display_overscan_handler.cc", |
| 952 "webui/options/chromeos/display_overscan_handler.h", |
| 953 "webui/options/chromeos/internet_options_handler.cc", |
| 954 "webui/options/chromeos/internet_options_handler.h", |
| 955 "webui/options/chromeos/internet_options_handler_strings.cc", |
| 956 "webui/options/chromeos/internet_options_handler_strings.h", |
| 957 "webui/options/chromeos/keyboard_handler.cc", |
| 958 "webui/options/chromeos/keyboard_handler.h", |
| 959 "webui/options/chromeos/options_stylus_handler.cc", |
| 960 "webui/options/chromeos/options_stylus_handler.h", |
| 961 "webui/options/chromeos/pointer_handler.cc", |
| 962 "webui/options/chromeos/pointer_handler.h", |
| 963 "webui/options/chromeos/power_handler.cc", |
| 964 "webui/options/chromeos/power_handler.h", |
| 965 "webui/options/chromeos/proxy_handler.cc", |
| 966 "webui/options/chromeos/proxy_handler.h", |
| 967 "webui/options/chromeos/stats_options_handler.cc", |
| 968 "webui/options/chromeos/stats_options_handler.h", |
| 969 "webui/options/chromeos/storage_manager_handler.cc", |
| 970 "webui/options/chromeos/storage_manager_handler.h", |
| 971 "webui/options/chromeos/user_image_source.cc", |
| 972 "webui/options/chromeos/user_image_source.h", |
| 973 "webui/options/clear_browser_data_handler.cc", |
| 974 "webui/options/clear_browser_data_handler.h", |
| 975 "webui/options/content_settings_handler.cc", |
| 976 "webui/options/content_settings_handler.h", |
| 977 "webui/options/cookies_view_handler.cc", |
| 978 "webui/options/cookies_view_handler.h", |
| 979 "webui/options/core_options_handler.cc", |
| 980 "webui/options/core_options_handler.h", |
| 981 "webui/options/create_profile_handler.cc", |
| 982 "webui/options/create_profile_handler.h", |
| 983 "webui/options/easy_unlock_handler.cc", |
| 984 "webui/options/easy_unlock_handler.h", |
| 985 "webui/options/font_settings_handler.cc", |
| 986 "webui/options/font_settings_handler.h", |
| 987 "webui/options/font_settings_utils.h", |
| 988 "webui/options/font_settings_utils_linux.cc", |
| 989 "webui/options/font_settings_utils_mac.mm", |
| 990 "webui/options/font_settings_utils_win.cc", |
| 991 "webui/options/handler_options_handler.cc", |
| 992 "webui/options/handler_options_handler.h", |
| 993 "webui/options/help_overlay_handler.cc", |
| 994 "webui/options/help_overlay_handler.h", |
| 995 "webui/options/home_page_overlay_handler.cc", |
| 996 "webui/options/home_page_overlay_handler.h", |
| 997 "webui/options/import_data_handler.cc", |
| 998 "webui/options/import_data_handler.h", |
| 999 "webui/options/language_dictionary_overlay_handler.cc", |
| 1000 "webui/options/language_dictionary_overlay_handler.h", |
| 1001 "webui/options/language_options_handler.cc", |
| 1002 "webui/options/language_options_handler.h", |
| 1003 "webui/options/language_options_handler_common.cc", |
| 1004 "webui/options/language_options_handler_common.h", |
| 1005 "webui/options/manage_profile_handler.cc", |
| 1006 "webui/options/manage_profile_handler.h", |
| 1007 "webui/options/media_devices_selection_handler.cc", |
| 1008 "webui/options/media_devices_selection_handler.h", |
| 1009 "webui/options/options_ui.cc", |
| 1010 "webui/options/options_ui.h", |
| 1011 "webui/options/password_manager_handler.cc", |
| 1012 "webui/options/password_manager_handler.h", |
| 1013 "webui/options/pepper_flash_content_settings_utils.cc", |
| 1014 "webui/options/pepper_flash_content_settings_utils.h", |
| 1015 "webui/options/reset_profile_settings_handler.cc", |
| 1016 "webui/options/reset_profile_settings_handler.h", |
| 1017 "webui/options/search_engine_manager_handler.cc", |
| 1018 "webui/options/search_engine_manager_handler.h", |
| 1019 "webui/options/startup_pages_handler.cc", |
| 1020 "webui/options/startup_pages_handler.h", |
| 1021 "webui/options/supervised_user_create_confirm_handler.cc", |
| 1022 "webui/options/supervised_user_create_confirm_handler.h", |
| 1023 "webui/options/supervised_user_import_handler.cc", |
| 1024 "webui/options/supervised_user_import_handler.h", |
| 1025 "webui/options/supervised_user_learn_more_handler.cc", |
| 1026 "webui/options/supervised_user_learn_more_handler.h", |
| 1027 "webui/options/sync_setup_handler.cc", |
| 1028 "webui/options/sync_setup_handler.h", |
| 1029 "webui/policy_indicator_localized_strings_provider.cc", |
| 1030 "webui/policy_indicator_localized_strings_provider.h", |
| 1031 "webui/profile_helper.cc", |
| 1032 "webui/profile_helper.h", |
| 1033 "webui/profile_info_watcher.cc", |
| 1034 "webui/profile_info_watcher.h", |
| 1035 "webui/quota_internals/quota_internals_handler.cc", |
| 1036 "webui/quota_internals/quota_internals_handler.h", |
| 1037 "webui/quota_internals/quota_internals_proxy.cc", |
| 1038 "webui/quota_internals/quota_internals_proxy.h", |
| 1039 "webui/quota_internals/quota_internals_types.cc", |
| 1040 "webui/quota_internals/quota_internals_types.h", |
| 1041 "webui/quota_internals/quota_internals_ui.cc", |
| 1042 "webui/quota_internals/quota_internals_ui.h", |
| 1043 "webui/set_as_default_browser_ui_win.cc", |
| 1044 "webui/set_as_default_browser_ui_win.h", |
| 1045 "webui/settings/about_handler.cc", |
| 1046 "webui/settings/about_handler.h", |
| 1047 "webui/settings/appearance_handler.cc", |
| 1048 "webui/settings/appearance_handler.h", |
| 1049 "webui/settings/browser_lifetime_handler.cc", |
| 1050 "webui/settings/browser_lifetime_handler.h", |
| 1051 "webui/settings/chromeos/accessibility_handler.cc", |
| 1052 "webui/settings/chromeos/accessibility_handler.h", |
| 1053 "webui/settings/chromeos/change_picture_handler.cc", |
| 1054 "webui/settings/chromeos/change_picture_handler.h", |
| 1055 "webui/settings/chromeos/cups_printers_handler.cc", |
| 1056 "webui/settings/chromeos/cups_printers_handler.h", |
| 1057 "webui/settings/chromeos/device_keyboard_handler.cc", |
| 1058 "webui/settings/chromeos/device_keyboard_handler.h", |
| 1059 "webui/settings/chromeos/device_pointer_handler.cc", |
| 1060 "webui/settings/chromeos/device_pointer_handler.h", |
| 1061 "webui/settings/chromeos/easy_unlock_settings_handler.cc", |
| 1062 "webui/settings/chromeos/easy_unlock_settings_handler.h", |
| 1063 "webui/settings/chromeos/internet_handler.cc", |
| 1064 "webui/settings/chromeos/internet_handler.h", |
| 1065 "webui/settings/downloads_handler.cc", |
| 1066 "webui/settings/downloads_handler.h", |
| 1067 "webui/settings/font_handler.cc", |
| 1068 "webui/settings/font_handler.h", |
| 1069 "webui/settings/languages_handler.cc", |
| 1070 "webui/settings/languages_handler.h", |
| 1071 "webui/settings/md_settings_localized_strings_provider.cc", |
| 1072 "webui/settings/md_settings_localized_strings_provider.h", |
| 1073 "webui/settings/md_settings_ui.cc", |
| 1074 "webui/settings/md_settings_ui.h", |
| 1075 "webui/settings/metrics_reporting_handler.cc", |
| 1076 "webui/settings/metrics_reporting_handler.h", |
| 1077 "webui/settings/people_handler.cc", |
| 1078 "webui/settings/people_handler.h", |
| 1079 "webui/settings/profile_info_handler.cc", |
| 1080 "webui/settings/profile_info_handler.h", |
| 1081 "webui/settings/protocol_handlers_handler.cc", |
| 1082 "webui/settings/protocol_handlers_handler.h", |
| 1083 "webui/settings/reset_settings_handler.cc", |
| 1084 "webui/settings/reset_settings_handler.h", |
| 1085 "webui/settings/search_engines_handler.cc", |
| 1086 "webui/settings/search_engines_handler.h", |
| 1087 "webui/settings/settings_clear_browsing_data_handler.cc", |
| 1088 "webui/settings/settings_clear_browsing_data_handler.h", |
| 1089 "webui/settings/settings_cookies_view_handler.cc", |
| 1090 "webui/settings/settings_cookies_view_handler.h", |
| 1091 "webui/settings/settings_manage_profile_handler.cc", |
| 1092 "webui/settings/settings_manage_profile_handler.h", |
| 1093 "webui/settings/settings_media_devices_selection_handler.cc", |
| 1094 "webui/settings/settings_media_devices_selection_handler.h", |
| 1095 "webui/settings/settings_page_ui_handler.cc", |
| 1096 "webui/settings/settings_page_ui_handler.h", |
| 1097 "webui/settings/settings_startup_pages_handler.cc", |
| 1098 "webui/settings/settings_startup_pages_handler.h", |
| 1099 "webui/settings/site_settings_handler.cc", |
| 1100 "webui/settings/site_settings_handler.h", |
| 1101 "webui/settings_utils.cc", |
| 1102 "webui/settings_utils.h", |
| 1103 "webui/signin/get_auth_frame.cc", |
| 1104 "webui/signin/get_auth_frame.h", |
| 1105 "webui/signin/login_ui_service.cc", |
| 1106 "webui/signin/login_ui_service.h", |
| 1107 "webui/signin/login_ui_service_factory.cc", |
| 1108 "webui/signin/login_ui_service_factory.h", |
| 1109 "webui/signin/profile_signin_confirmation_dialog.cc", |
| 1110 "webui/signin/profile_signin_confirmation_dialog.h", |
| 1111 "webui/signin/profile_signin_confirmation_ui.cc", |
| 1112 "webui/signin/profile_signin_confirmation_ui.h", |
| 1113 "webui/site_settings_helper.cc", |
| 1114 "webui/site_settings_helper.h", |
| 1115 "webui/sync_file_system_internals/dump_database_handler.cc", |
| 1116 "webui/sync_file_system_internals/dump_database_handler.h", |
| 1117 "webui/sync_file_system_internals/extension_statuses_handler.cc", |
| 1118 "webui/sync_file_system_internals/extension_statuses_handler.h", |
| 1119 "webui/sync_file_system_internals/file_metadata_handler.cc", |
| 1120 "webui/sync_file_system_internals/file_metadata_handler.h", |
| 1121 "webui/sync_file_system_internals/sync_file_system_internals_handler.cc", |
| 1122 "webui/sync_file_system_internals/sync_file_system_internals_handler.h", |
| 1123 "webui/sync_file_system_internals/sync_file_system_internals_ui.cc", |
| 1124 "webui/sync_file_system_internals/sync_file_system_internals_ui.h", |
| 1125 "webui/system_info_ui.cc", |
| 1126 "webui/system_info_ui.h", |
| 1127 "webui/theme_handler.cc", |
| 1128 "webui/theme_handler.h", |
| 1129 "webui/uber/uber_ui.cc", |
| 1130 "webui/uber/uber_ui.h", |
| 1131 "window_sizer/window_sizer.cc", |
| 1132 "window_sizer/window_sizer.h", |
| 1133 ] |
| 232 deps += [ | 1134 deps += [ |
| 233 "//apps", | 1135 "//apps", |
| 234 "//chrome/browser/profile_resetter:profile_reset_report_proto", | 1136 "//chrome/browser/profile_resetter:profile_reset_report_proto", |
| 235 "//chrome/common:features", | 1137 "//chrome/common:features", |
| 236 "//components/feedback/proto", | 1138 "//components/feedback/proto", |
| 237 "//components/proximity_auth/webui", | 1139 "//components/proximity_auth/webui", |
| 238 "//device/bluetooth", | 1140 "//device/bluetooth", |
| 239 ] | 1141 ] |
| 240 } | 1142 } |
| 241 | 1143 |
| 242 if (enable_basic_printing || enable_print_preview) { | 1144 if (enable_basic_printing || enable_print_preview) { |
| 243 deps += [ "//printing" ] | 1145 deps += [ "//printing" ] |
| 244 } | 1146 } |
| 245 | 1147 |
| 246 if (enable_nacl) { | 1148 if (enable_nacl) { |
| 247 sources += | 1149 sources += [ |
| 248 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome") | 1150 "webui/nacl_ui.cc", |
| 1151 "webui/nacl_ui.h", |
| 1152 ] |
| 249 deps += [ "//components/nacl/browser" ] | 1153 deps += [ "//components/nacl/browser" ] |
| 250 } | 1154 } |
| 251 if (enable_plugins) { | 1155 if (enable_plugins) { |
| 252 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources, | 1156 sources += [ |
| 253 ".", | 1157 "hung_plugin_tab_helper.cc", |
| 254 "//chrome") | 1158 "hung_plugin_tab_helper.h", |
| 1159 "webui/flash_ui.cc", |
| 1160 "webui/flash_ui.h", |
| 1161 "webui/plugins/plugins_handler.cc", |
| 1162 "webui/plugins/plugins_handler.h", |
| 1163 "webui/plugins/plugins_ui.cc", |
| 1164 "webui/plugins/plugins_ui.h", |
| 1165 ] |
| 255 deps += [ "//ppapi/proxy:ipc" ] | 1166 deps += [ "//ppapi/proxy:ipc" ] |
| 256 } | 1167 } |
| 257 if (safe_browsing_mode == 1) { | 1168 if (safe_browsing_mode == 1) { |
| 258 deps += [ | 1169 deps += [ |
| 259 "//chrome/browser/safe_browsing:chunk_proto", | 1170 "//chrome/browser/safe_browsing:chunk_proto", |
| 260 "//chrome/common/safe_browsing:proto", | 1171 "//chrome/common/safe_browsing:proto", |
| 261 ] | 1172 ] |
| 262 } | 1173 } |
| 263 | 1174 |
| 264 if (is_chromeos && !is_official_build) { | 1175 if (is_chromeos && !is_official_build) { |
| 265 sources += | 1176 sources += [ |
| 266 rebase_path(gypi_values.chrome_browser_ui_chromeos_non_official_sources, | 1177 "webui/chromeos/emulator/device_emulator_message_handler.cc", |
| 267 ".", | 1178 "webui/chromeos/emulator/device_emulator_message_handler.h", |
| 268 "//chrome") | 1179 "webui/chromeos/emulator/device_emulator_ui.cc", |
| 1180 "webui/chromeos/emulator/device_emulator_ui.h", |
| 1181 ] |
| 269 } | 1182 } |
| 270 | 1183 |
| 271 if (is_chromeos) { | 1184 if (is_chromeos) { |
| 272 sources += rebase_path(gypi_values.chrome_browser_ui_chromeos_sources, | 1185 sources += [ |
| 273 ".", | 1186 "app_list/search/launcher_search/launcher_search_icon_image_loader.cc", |
| 274 "//chrome") | 1187 "app_list/search/launcher_search/launcher_search_icon_image_loader.h", |
| 1188 "app_list/search/launcher_search/launcher_search_icon_image_loader_impl.cc
", |
| 1189 "app_list/search/launcher_search/launcher_search_icon_image_loader_impl.h"
, |
| 1190 "app_list/search/launcher_search/launcher_search_provider.cc", |
| 1191 "app_list/search/launcher_search/launcher_search_provider.h", |
| 1192 "app_list/search/launcher_search/launcher_search_result.cc", |
| 1193 "app_list/search/launcher_search/launcher_search_result.h", |
| 1194 "extensions/extension_installed_notification.cc", |
| 1195 "extensions/extension_installed_notification.h", |
| 1196 "input_method/input_method_engine_base.cc", |
| 1197 "input_method/input_method_engine_base.h", |
| 1198 "views/apps/chrome_native_app_window_views_aura_ash.cc", |
| 1199 "views/apps/chrome_native_app_window_views_aura_ash.h", |
| 1200 "views/intent_picker_bubble_view.cc", |
| 1201 "views/intent_picker_bubble_view.h", |
| 1202 |
| 1203 # On chromeos, file manager extension handles the file open/save dialog. |
| 1204 "views/select_file_dialog_extension.cc", |
| 1205 "views/select_file_dialog_extension.h", |
| 1206 "views/select_file_dialog_extension_factory.cc", |
| 1207 "views/select_file_dialog_extension_factory.h", |
| 1208 "webui/cast/cast_ui.cc", |
| 1209 "webui/cast/cast_ui.h", |
| 1210 ] |
| 275 deps += [ | 1211 deps += [ |
| 276 "//chrome/browser/chromeos", | 1212 "//chrome/browser/chromeos", |
| 277 "//components/arc", | 1213 "//components/arc", |
| 278 "//ui/base/ime", | 1214 "//ui/base/ime", |
| 279 ] | 1215 ] |
| 280 } | 1216 } |
| 281 if (use_cups) { | 1217 if (use_cups) { |
| 282 configs += [ "//printing:cups" ] | 1218 configs += [ "//printing:cups" ] |
| 283 } | 1219 } |
| 284 if (use_ash) { | 1220 if (use_ash) { |
| 285 sources += | |
| 286 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") | |
| 287 sources += [ | 1221 sources += [ |
| 1222 "ash/app_list/app_list_controller_ash.cc", |
| 1223 "ash/app_list/app_list_controller_ash.h", |
| 1224 "ash/app_list/app_list_presenter_delegate_mus.cc", |
| 1225 "ash/app_list/app_list_presenter_delegate_mus.h", |
| 288 "ash/app_list/app_list_presenter_service.cc", | 1226 "ash/app_list/app_list_presenter_service.cc", |
| 289 "ash/app_list/app_list_presenter_service.h", | 1227 "ash/app_list/app_list_presenter_service.h", |
| 1228 "ash/app_list/app_list_service_ash.cc", |
| 1229 "ash/app_list/app_list_service_ash.h", |
| 1230 "ash/app_list/app_sync_ui_state_watcher.cc", |
| 1231 "ash/app_list/app_sync_ui_state_watcher.h", |
| 1232 "ash/app_sync_ui_state.cc", |
| 1233 "ash/app_sync_ui_state.h", |
| 1234 "ash/app_sync_ui_state_factory.cc", |
| 1235 "ash/app_sync_ui_state_factory.h", |
| 1236 "ash/app_sync_ui_state_observer.h", |
| 1237 "ash/ash_init.cc", |
| 1238 "ash/ash_init.h", |
| 1239 "ash/ash_util.cc", |
| 1240 "ash/ash_util.h", |
| 1241 "ash/cast_config_delegate_chromeos.cc", |
| 1242 "ash/cast_config_delegate_chromeos.h", |
| 1243 "ash/cast_config_delegate_media_router.cc", |
| 1244 "ash/cast_config_delegate_media_router.h", |
| 1245 "ash/chrome_keyboard_ui.cc", |
| 1246 "ash/chrome_keyboard_ui.h", |
| 1247 "ash/chrome_launcher_prefs.cc", |
| 1248 "ash/chrome_launcher_prefs.h", |
| 1249 "ash/chrome_new_window_delegate.cc", |
| 1250 "ash/chrome_new_window_delegate.h", |
| 1251 "ash/chrome_screenshot_grabber.cc", |
| 1252 "ash/chrome_screenshot_grabber.h", |
| 1253 "ash/chrome_shell_content_state.cc", |
| 1254 "ash/chrome_shell_content_state.h", |
| 1255 "ash/chrome_shell_content_state_chromeos.cc", |
| 1256 "ash/chrome_shell_delegate.cc", |
| 1257 "ash/chrome_shell_delegate.h", |
| 290 "ash/chrome_wallpaper_manager.cc", | 1258 "ash/chrome_wallpaper_manager.cc", |
| 291 "ash/chrome_wallpaper_manager.h", | 1259 "ash/chrome_wallpaper_manager.h", |
| 1260 "ash/ime_controller_chromeos.cc", |
| 1261 "ash/ime_controller_chromeos.h", |
| 292 "ash/keyboard_ui_service.cc", | 1262 "ash/keyboard_ui_service.cc", |
| 293 "ash/keyboard_ui_service.h", | 1263 "ash/keyboard_ui_service.h", |
| 1264 "ash/launcher/app_shortcut_launcher_item_controller.cc", |
| 1265 "ash/launcher/app_shortcut_launcher_item_controller.h", |
| 1266 "ash/launcher/app_window_launcher_controller.cc", |
| 1267 "ash/launcher/app_window_launcher_controller.h", |
| 1268 "ash/launcher/app_window_launcher_item_controller.cc", |
| 1269 "ash/launcher/app_window_launcher_item_controller.h", |
| 1270 "ash/launcher/arc_playstore_shortcut_launcher_item_controller.cc", |
| 1271 "ash/launcher/arc_playstore_shortcut_launcher_item_controller.h", |
| 1272 "ash/launcher/browser_shortcut_launcher_item_controller.cc", |
| 1273 "ash/launcher/browser_shortcut_launcher_item_controller.h", |
| 1274 "ash/launcher/browser_status_monitor.cc", |
| 1275 "ash/launcher/browser_status_monitor.h", |
| 1276 "ash/launcher/chrome_launcher_app_menu_item.cc", |
| 1277 "ash/launcher/chrome_launcher_app_menu_item.h", |
| 1278 "ash/launcher/chrome_launcher_app_menu_item_browser.cc", |
| 1279 "ash/launcher/chrome_launcher_app_menu_item_browser.h", |
| 1280 "ash/launcher/chrome_launcher_app_menu_item_tab.cc", |
| 1281 "ash/launcher/chrome_launcher_app_menu_item_tab.h", |
| 1282 "ash/launcher/chrome_launcher_app_menu_item_v2app.cc", |
| 1283 "ash/launcher/chrome_launcher_app_menu_item_v2app.h", |
| 1284 "ash/launcher/chrome_launcher_controller.cc", |
| 1285 "ash/launcher/chrome_launcher_controller.h", |
| 1286 "ash/launcher/chrome_launcher_controller_impl.cc", |
| 1287 "ash/launcher/chrome_launcher_controller_impl.h", |
| 294 "ash/launcher/chrome_launcher_controller_mus.cc", | 1288 "ash/launcher/chrome_launcher_controller_mus.cc", |
| 295 "ash/launcher/chrome_launcher_controller_mus.h", | 1289 "ash/launcher/chrome_launcher_controller_mus.h", |
| 1290 "ash/launcher/chrome_launcher_controller_util.cc", |
| 1291 "ash/launcher/chrome_launcher_controller_util.h", |
| 296 "ash/launcher/chrome_mash_shelf_controller.cc", | 1292 "ash/launcher/chrome_mash_shelf_controller.cc", |
| 297 "ash/launcher/chrome_mash_shelf_controller.h", | 1293 "ash/launcher/chrome_mash_shelf_controller.h", |
| 1294 "ash/launcher/desktop_shell_launcher_context_menu.cc", |
| 1295 "ash/launcher/desktop_shell_launcher_context_menu.h", |
| 1296 "ash/launcher/extension_app_window_launcher_controller.cc", |
| 1297 "ash/launcher/extension_app_window_launcher_controller.h", |
| 1298 "ash/launcher/extension_app_window_launcher_item_controller.cc", |
| 1299 "ash/launcher/extension_app_window_launcher_item_controller.h", |
| 1300 "ash/launcher/extension_launcher_context_menu.cc", |
| 1301 "ash/launcher/extension_launcher_context_menu.h", |
| 1302 "ash/launcher/launcher_app_updater.cc", |
| 1303 "ash/launcher/launcher_app_updater.h", |
| 1304 "ash/launcher/launcher_application_menu_item_model.cc", |
| 1305 "ash/launcher/launcher_application_menu_item_model.h", |
| 1306 "ash/launcher/launcher_context_menu.cc", |
| 1307 "ash/launcher/launcher_context_menu.h", |
| 1308 "ash/launcher/launcher_controller_helper.cc", |
| 1309 "ash/launcher/launcher_controller_helper.h", |
| 1310 "ash/launcher/launcher_extension_app_updater.cc", |
| 1311 "ash/launcher/launcher_extension_app_updater.h", |
| 1312 "ash/launcher/launcher_favicon_loader.cc", |
| 1313 "ash/launcher/launcher_favicon_loader.h", |
| 1314 "ash/launcher/launcher_item_controller.cc", |
| 1315 "ash/launcher/launcher_item_controller.h", |
| 1316 "ash/launcher/multi_profile_app_window_launcher_controller.cc", |
| 1317 "ash/launcher/multi_profile_app_window_launcher_controller.h", |
| 1318 "ash/launcher/multi_profile_browser_status_monitor.cc", |
| 1319 "ash/launcher/multi_profile_browser_status_monitor.h", |
| 1320 "ash/media_delegate_chromeos.cc", |
| 1321 "ash/media_delegate_chromeos.h", |
| 1322 "ash/metrics/chrome_user_metrics_recorder.cc", |
| 1323 "ash/metrics/chrome_user_metrics_recorder.h", |
| 1324 "ash/multi_user/multi_user_context_menu.h", |
| 1325 "ash/multi_user/multi_user_context_menu_chromeos.cc", |
| 1326 "ash/multi_user/multi_user_notification_blocker_chromeos.cc", |
| 1327 "ash/multi_user/multi_user_notification_blocker_chromeos.h", |
| 1328 "ash/multi_user/multi_user_util.cc", |
| 1329 "ash/multi_user/multi_user_util.h", |
| 1330 "ash/multi_user/multi_user_warning_dialog.cc", |
| 1331 "ash/multi_user/multi_user_warning_dialog.h", |
| 1332 "ash/multi_user/multi_user_window_manager.cc", |
| 1333 "ash/multi_user/multi_user_window_manager.h", |
| 1334 "ash/multi_user/multi_user_window_manager_chromeos.cc", |
| 1335 "ash/multi_user/multi_user_window_manager_chromeos.h", |
| 1336 "ash/multi_user/multi_user_window_manager_stub.cc", |
| 1337 "ash/multi_user/multi_user_window_manager_stub.h", |
| 1338 "ash/multi_user/user_switch_animator_chromeos.cc", |
| 1339 "ash/multi_user/user_switch_animator_chromeos.h", |
| 1340 "ash/multi_user/user_switch_util.cc", |
| 1341 "ash/multi_user/user_switch_util.h", |
| 1342 "ash/network_connect_delegate_chromeos.cc", |
| 1343 "ash/network_connect_delegate_chromeos.h", |
| 1344 "ash/networking_config_delegate_chromeos.cc", |
| 1345 "ash/networking_config_delegate_chromeos.h", |
| 1346 "ash/palette_delegate_chromeos.cc", |
| 1347 "ash/palette_delegate_chromeos.h", |
| 1348 "ash/session_state_delegate_chromeos.cc", |
| 1349 "ash/session_state_delegate_chromeos.h", |
| 1350 "ash/session_util.cc", |
| 1351 "ash/session_util.h", |
| 1352 "ash/system_tray_delegate_chromeos.cc", |
| 1353 "ash/system_tray_delegate_chromeos.h", |
| 1354 "ash/system_tray_delegate_utils.cc", |
| 1355 "ash/system_tray_delegate_utils.h", |
| 1356 "ash/volume_controller_chromeos.cc", |
| 1357 "ash/volume_controller_chromeos.h", |
| 1358 "ash/vpn_delegate_chromeos.cc", |
| 1359 "ash/vpn_delegate_chromeos.h", |
| 1360 "views/ash/chrome_browser_main_extra_parts_ash.cc", |
| 1361 "views/ash/chrome_browser_main_extra_parts_ash.h", |
| 1362 "views/ash/tab_scrubber.cc", |
| 1363 "views/ash/tab_scrubber.h", |
| 1364 "views/touch_uma/touch_uma_ash.cc", |
| 1365 "window_sizer/window_sizer_ash.cc", |
| 298 ] | 1366 ] |
| 299 deps += [ | 1367 deps += [ |
| 300 "//ash", | 1368 "//ash", |
| 301 "//ash:ash_with_content", | 1369 "//ash:ash_with_content", |
| 302 "//ash/common/strings", | 1370 "//ash/common/strings", |
| 303 "//ash/public/interfaces", | 1371 "//ash/public/interfaces", |
| 304 "//components/user_manager", | 1372 "//components/user_manager", |
| 305 "//ui/app_list/presenter", | 1373 "//ui/app_list/presenter", |
| 306 "//ui/app_list/presenter:mojom", | 1374 "//ui/app_list/presenter:mojom", |
| 307 "//ui/keyboard:mojom", | 1375 "//ui/keyboard:mojom", |
| 308 ] | 1376 ] |
| 309 } else { # Not ash. | 1377 } else { # Not ash. |
| 310 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, | 1378 sources += [ "views/touch_uma/touch_uma.cc" ] |
| 311 ".", | |
| 312 "//chrome") | |
| 313 } | 1379 } |
| 314 if (toolkit_views) { | 1380 if (toolkit_views) { |
| 315 sources += rebase_path(gypi_values.chrome_browser_ui_views_sources, | 1381 sources += [ |
| 316 ".", | 1382 "autofill/save_card_bubble_controller.h", |
| 317 "//chrome") | 1383 "autofill/save_card_bubble_controller_impl.cc", |
| 1384 "autofill/save_card_bubble_controller_impl.h", |
| 1385 "autofill/save_card_bubble_view.h", |
| 1386 "browser_dialogs_mac.cc", |
| 1387 "views/apps/app_info_dialog/app_info_dialog_container.cc", |
| 1388 "views/apps/app_info_dialog/app_info_dialog_container.h", |
| 1389 "views/apps/app_info_dialog/app_info_dialog_views.cc", |
| 1390 "views/apps/app_info_dialog/app_info_dialog_views.h", |
| 1391 "views/apps/app_info_dialog/app_info_footer_panel.cc", |
| 1392 "views/apps/app_info_dialog/app_info_footer_panel.h", |
| 1393 "views/apps/app_info_dialog/app_info_header_panel.cc", |
| 1394 "views/apps/app_info_dialog/app_info_header_panel.h", |
| 1395 "views/apps/app_info_dialog/app_info_panel.cc", |
| 1396 "views/apps/app_info_dialog/app_info_panel.h", |
| 1397 "views/apps/app_info_dialog/app_info_permissions_panel.cc", |
| 1398 "views/apps/app_info_dialog/app_info_permissions_panel.h", |
| 1399 "views/apps/app_info_dialog/app_info_summary_panel.cc", |
| 1400 "views/apps/app_info_dialog/app_info_summary_panel.h", |
| 1401 "views/apps/app_window_native_widget_mac.h", |
| 1402 "views/apps/app_window_native_widget_mac.mm", |
| 1403 "views/apps/chrome_native_app_window_views.cc", |
| 1404 "views/apps/chrome_native_app_window_views.h", |
| 1405 "views/apps/chrome_native_app_window_views_mac.h", |
| 1406 "views/apps/chrome_native_app_window_views_mac.mm", |
| 1407 "views/apps/native_app_window_frame_view_mac.h", |
| 1408 "views/apps/native_app_window_frame_view_mac.mm", |
| 1409 "views/autofill/card_unmask_prompt_views.cc", |
| 1410 "views/autofill/card_unmask_prompt_views.h", |
| 1411 "views/autofill/decorated_textfield.cc", |
| 1412 "views/autofill/decorated_textfield.h", |
| 1413 "views/autofill/info_bubble.cc", |
| 1414 "views/autofill/info_bubble.h", |
| 1415 "views/autofill/tooltip_icon.cc", |
| 1416 "views/autofill/tooltip_icon.h", |
| 1417 "views/bookmarks/bookmark_bubble_view.cc", |
| 1418 "views/bookmarks/bookmark_bubble_view.h", |
| 1419 "views/bookmarks/bookmark_editor_view.cc", |
| 1420 "views/bookmarks/bookmark_editor_view.h", |
| 1421 "views/browser_dialogs_views_mac.cc", |
| 1422 "views/chooser_content_view.cc", |
| 1423 "views/chooser_content_view.h", |
| 1424 "views/chrome_browser_main_extra_parts_views.cc", |
| 1425 "views/chrome_browser_main_extra_parts_views.h", |
| 1426 "views/chrome_constrained_window_views_client.cc", |
| 1427 "views/chrome_constrained_window_views_client.h", |
| 1428 "views/chrome_views_delegate.cc", |
| 1429 "views/chrome_views_delegate.h", |
| 1430 "views/collected_cookies_views.cc", |
| 1431 "views/collected_cookies_views.h", |
| 1432 "views/content_setting_bubble_contents.cc", |
| 1433 "views/content_setting_bubble_contents.h", |
| 1434 "views/cookie_info_view.cc", |
| 1435 "views/cookie_info_view.h", |
| 1436 "views/exclusive_access_bubble_views.cc", |
| 1437 "views/exclusive_access_bubble_views.h", |
| 1438 "views/exclusive_access_bubble_views_context.h", |
| 1439 "views/extensions/chooser_dialog_view.cc", |
| 1440 "views/extensions/chooser_dialog_view.h", |
| 1441 "views/extensions/device_permissions_dialog_view.cc", |
| 1442 "views/extensions/device_permissions_dialog_view.h", |
| 1443 "views/extensions/extension_install_dialog_view.cc", |
| 1444 "views/extensions/extension_keybinding_registry_views.cc", |
| 1445 "views/extensions/extension_keybinding_registry_views.h", |
| 1446 "views/frame/native_widget_mac_frameless_nswindow.h", |
| 1447 "views/frame/native_widget_mac_frameless_nswindow.mm", |
| 1448 "views/location_bar/location_bar_bubble_delegate_view.cc", |
| 1449 "views/location_bar/location_bar_bubble_delegate_view.h", |
| 1450 "views/login_handler_views.cc", |
| 1451 "views/login_view.cc", |
| 1452 "views/login_view.h", |
| 1453 "views/new_back_shortcut_bubble.cc", |
| 1454 "views/new_back_shortcut_bubble.h", |
| 1455 "views/subtle_notification_view.cc", |
| 1456 "views/subtle_notification_view.h", |
| 1457 "views/sync/bubble_sync_promo_view.cc", |
| 1458 "views/sync/bubble_sync_promo_view.h", |
| 1459 "views/task_manager_view.cc", |
| 1460 "views/task_manager_view.h", |
| 1461 "views/website_settings/chosen_object_view.cc", |
| 1462 "views/website_settings/chosen_object_view.h", |
| 1463 "views/website_settings/permission_prompt_impl.cc", |
| 1464 "views/website_settings/permission_prompt_impl.h", |
| 1465 "views/website_settings/permission_selector_view.cc", |
| 1466 "views/website_settings/permission_selector_view.h", |
| 1467 "views/website_settings/permission_selector_view_observer.h", |
| 1468 "views/website_settings/website_settings_popup_view.cc", |
| 1469 "views/website_settings/website_settings_popup_view.h", |
| 1470 ] |
| 318 deps += [ | 1471 deps += [ |
| 319 "//chrome/browser/ui/views", | 1472 "//chrome/browser/ui/views", |
| 320 "//components/constrained_window", | 1473 "//components/constrained_window", |
| 321 "//services/ui/public/cpp/input_devices", | 1474 "//services/ui/public/cpp/input_devices", |
| 322 ] | 1475 ] |
| 323 allow_circular_includes_from += [ "//chrome/browser/ui/views" ] | 1476 allow_circular_includes_from += [ "//chrome/browser/ui/views" ] |
| 324 | 1477 |
| 325 if (enable_extensions) { | 1478 if (enable_extensions) { |
| 326 deps += [ "//extensions/components/native_app_window" ] | 1479 deps += [ "//extensions/components/native_app_window" ] |
| 327 } | 1480 } |
| 328 | 1481 |
| 329 if (is_chromeos) { | 1482 if (is_chromeos) { |
| 330 sources += | 1483 sources += [ |
| 331 rebase_path(gypi_values.chrome_browser_ui_views_chromeos_sources, | 1484 "views/apps/app_info_dialog/arc_app_info_links_panel.cc", |
| 332 ".", | 1485 "views/apps/app_info_dialog/arc_app_info_links_panel.h", |
| 333 "//chrome") | 1486 ] |
| 334 } else if (!is_mac || mac_views_browser) { | 1487 } else if (!is_mac || mac_views_browser) { |
| 335 sources += | 1488 sources += [ |
| 336 rebase_path(gypi_values.chrome_browser_ui_views_non_chromeos_sources, | 1489 "external_protocol_dialog_delegate.cc", |
| 337 ".", | 1490 "external_protocol_dialog_delegate.h", |
| 338 "//chrome") | 1491 "views/chrome_browser_main_extra_parts_views_linux.cc", |
| 1492 "views/chrome_browser_main_extra_parts_views_linux.h", |
| 1493 "views/external_protocol_dialog.cc", |
| 1494 "views/external_protocol_dialog.h", |
| 1495 "views/frame/opaque_browser_frame_view.cc", |
| 1496 "views/frame/opaque_browser_frame_view.h", |
| 1497 "views/frame/opaque_browser_frame_view_layout.cc", |
| 1498 "views/frame/opaque_browser_frame_view_layout.h", |
| 1499 "views/frame/opaque_browser_frame_view_layout_delegate.h", |
| 1500 "views/frame/opaque_browser_frame_view_linux.cc", |
| 1501 "views/frame/opaque_browser_frame_view_linux.h", |
| 1502 "views/frame/opaque_browser_frame_view_platform_specific.cc", |
| 1503 "views/frame/opaque_browser_frame_view_platform_specific.h", |
| 1504 "views/profiles/profile_chooser_view.cc", |
| 1505 "views/profiles/profile_chooser_view.h", |
| 1506 "views/screen_capture_notification_ui_views.cc", |
| 1507 "views/sync/one_click_signin_dialog_view.cc", |
| 1508 "views/sync/one_click_signin_dialog_view.h", |
| 1509 "views/sync/profile_signin_confirmation_dialog_views.cc", |
| 1510 "views/sync/profile_signin_confirmation_dialog_views.h", |
| 1511 ] |
| 1512 } |
| 1513 if (enable_extensions && (!is_mac || mac_views_browser)) { |
| 1514 sources += [ |
| 1515 "views/extensions/bookmark_app_confirmation_view.cc", |
| 1516 "views/extensions/bookmark_app_confirmation_view.h", |
| 1517 "views/extensions/browser_action_drag_data.cc", |
| 1518 "views/extensions/browser_action_drag_data.h", |
| 1519 "views/extensions/extension_action_platform_delegate_views.cc", |
| 1520 "views/extensions/extension_action_platform_delegate_views.h", |
| 1521 "views/extensions/extension_dialog.cc", |
| 1522 "views/extensions/extension_dialog.h", |
| 1523 "views/extensions/extension_dialog_observer.cc", |
| 1524 "views/extensions/extension_dialog_observer.h", |
| 1525 "views/extensions/extension_installed_bubble_view.cc", |
| 1526 "views/extensions/extension_popup.cc", |
| 1527 "views/extensions/extension_popup.h", |
| 1528 "views/extensions/extension_uninstall_dialog_view.cc", |
| 1529 "views/extensions/extension_view_views.cc", |
| 1530 "views/extensions/extension_view_views.h", |
| 1531 "views/extensions/media_galleries_dialog_views.cc", |
| 1532 "views/extensions/media_galleries_dialog_views.h", |
| 1533 "views/extensions/media_gallery_checkbox_view.cc", |
| 1534 "views/extensions/media_gallery_checkbox_view.h", |
| 1535 ] |
| 1536 if (use_aura) { |
| 1537 sources += [ |
| 1538 "views/extensions/extension_popup_aura.cc", |
| 1539 "views/extensions/extension_popup_aura.h", |
| 1540 ] |
| 1541 } |
| 339 } | 1542 } |
| 340 if (!is_mac) { | 1543 if (!is_mac) { |
| 341 sources += | 1544 sources += [ |
| 342 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources, | 1545 # This test header is included because it contains forward declarations |
| 343 ".", | 1546 # needed for "friend" statements for use in tests. |
| 344 "//chrome") | 1547 "translate/translate_bubble_test_utils.h", |
| 1548 "views/accessibility/invert_bubble_view.cc", |
| 1549 "views/accessibility/invert_bubble_view.h", |
| 1550 "views/autofill/autofill_popup_base_view.cc", |
| 1551 "views/autofill/autofill_popup_base_view.h", |
| 1552 "views/autofill/autofill_popup_view_views.cc", |
| 1553 "views/autofill/autofill_popup_view_views.h", |
| 1554 "views/autofill/card_unmask_prompt_views_shim.cc", |
| 1555 "views/autofill/password_generation_popup_view_views.cc", |
| 1556 "views/autofill/password_generation_popup_view_views.h", |
| 1557 "views/autofill/save_card_bubble_views.cc", |
| 1558 "views/autofill/save_card_bubble_views.h", |
| 1559 "views/autofill/save_card_icon_view.cc", |
| 1560 "views/autofill/save_card_icon_view.h", |
| 1561 "views/bar_control_button.cc", |
| 1562 "views/bar_control_button.h", |
| 1563 "views/bookmarks/bookmark_bar_instructions_view.cc", |
| 1564 "views/bookmarks/bookmark_bar_instructions_view.h", |
| 1565 "views/bookmarks/bookmark_bar_view.cc", |
| 1566 "views/bookmarks/bookmark_bar_view.h", |
| 1567 "views/bookmarks/bookmark_bar_view_observer.h", |
| 1568 "views/bookmarks/bookmark_context_menu.cc", |
| 1569 "views/bookmarks/bookmark_context_menu.h", |
| 1570 "views/bookmarks/bookmark_drag_drop_views.cc", |
| 1571 "views/bookmarks/bookmark_menu_controller_observer.h", |
| 1572 "views/bookmarks/bookmark_menu_controller_views.cc", |
| 1573 "views/bookmarks/bookmark_menu_controller_views.h", |
| 1574 "views/bookmarks/bookmark_menu_delegate.cc", |
| 1575 "views/bookmarks/bookmark_menu_delegate.h", |
| 1576 "views/browser_dialogs_views.cc", |
| 1577 "views/certificate_selector.cc", |
| 1578 "views/certificate_selector.h", |
| 1579 "views/certificate_viewer_win.cc", |
| 1580 "views/chrome_javascript_native_dialog_factory_views.cc", |
| 1581 "views/chrome_views_delegate_chromeos.cc", |
| 1582 "views/chrome_web_dialog_view.cc", |
| 1583 "views/color_chooser_win.cc", |
| 1584 "views/confirm_bubble_views.cc", |
| 1585 "views/confirm_bubble_views.h", |
| 1586 "views/conflicting_module_view_win.cc", |
| 1587 "views/conflicting_module_view_win.h", |
| 1588 "views/constrained_web_dialog_delegate_views.cc", |
| 1589 "views/create_application_shortcut_view.cc", |
| 1590 "views/create_application_shortcut_view.h", |
| 1591 "views/download/download_danger_prompt_views.cc", |
| 1592 "views/download/download_feedback_dialog_view.cc", |
| 1593 "views/download/download_feedback_dialog_view.h", |
| 1594 "views/download/download_in_progress_dialog_view.cc", |
| 1595 "views/download/download_in_progress_dialog_view.h", |
| 1596 "views/download/download_item_view.cc", |
| 1597 "views/download/download_item_view.h", |
| 1598 "views/download/download_item_view_md.cc", |
| 1599 "views/download/download_item_view_md.h", |
| 1600 "views/download/download_shelf_context_menu_view.cc", |
| 1601 "views/download/download_shelf_context_menu_view.h", |
| 1602 "views/download/download_shelf_view.cc", |
| 1603 "views/download/download_shelf_view.h", |
| 1604 "views/download/download_started_animation_views.cc", |
| 1605 "views/dropdown_bar_host.cc", |
| 1606 "views/dropdown_bar_host.h", |
| 1607 "views/dropdown_bar_host_delegate.h", |
| 1608 "views/dropdown_bar_view.cc", |
| 1609 "views/dropdown_bar_view.h", |
| 1610 "views/elevation_icon_setter.cc", |
| 1611 "views/elevation_icon_setter.h", |
| 1612 "views/find_bar_host.cc", |
| 1613 "views/find_bar_host.h", |
| 1614 "views/find_bar_view.cc", |
| 1615 "views/find_bar_view.h", |
| 1616 "views/first_run_bubble.cc", |
| 1617 "views/first_run_bubble.h", |
| 1618 "views/frame/browser_command_handler_linux.cc", |
| 1619 "views/frame/browser_command_handler_linux.h", |
| 1620 "views/frame/browser_frame.cc", |
| 1621 "views/frame/browser_frame.h", |
| 1622 "views/frame/browser_non_client_frame_view.cc", |
| 1623 "views/frame/browser_non_client_frame_view.h", |
| 1624 "views/frame/browser_root_view.cc", |
| 1625 "views/frame/browser_root_view.h", |
| 1626 "views/frame/browser_view.cc", |
| 1627 "views/frame/browser_view.h", |
| 1628 "views/frame/browser_view_layout.cc", |
| 1629 "views/frame/browser_view_layout.h", |
| 1630 "views/frame/browser_view_layout_delegate.h", |
| 1631 "views/frame/browser_window_factory.cc", |
| 1632 "views/frame/browser_window_property_manager_win.cc", |
| 1633 "views/frame/browser_window_property_manager_win.h", |
| 1634 "views/frame/contents_layout_manager.cc", |
| 1635 "views/frame/contents_layout_manager.h", |
| 1636 "views/frame/contents_web_view.cc", |
| 1637 "views/frame/contents_web_view.h", |
| 1638 "views/frame/immersive_mode_controller.cc", |
| 1639 "views/frame/immersive_mode_controller.h", |
| 1640 "views/frame/immersive_mode_controller_factory_views.cc", |
| 1641 "views/frame/immersive_mode_controller_stub.cc", |
| 1642 "views/frame/immersive_mode_controller_stub.h", |
| 1643 "views/frame/minimize_button_metrics_win.cc", |
| 1644 "views/frame/minimize_button_metrics_win.h", |
| 1645 "views/frame/native_browser_frame.h", |
| 1646 "views/frame/native_browser_frame_factory.cc", |
| 1647 "views/frame/native_browser_frame_factory.h", |
| 1648 "views/frame/native_browser_frame_factory_chromeos.cc", |
| 1649 "views/frame/system_menu_insertion_delegate_win.cc", |
| 1650 "views/frame/system_menu_insertion_delegate_win.h", |
| 1651 "views/frame/system_menu_model_builder.cc", |
| 1652 "views/frame/system_menu_model_builder.h", |
| 1653 "views/frame/system_menu_model_delegate.cc", |
| 1654 "views/frame/system_menu_model_delegate.h", |
| 1655 "views/frame/taskbar_decorator_win.cc", |
| 1656 "views/frame/taskbar_decorator_win.h", |
| 1657 "views/frame/top_container_view.cc", |
| 1658 "views/frame/top_container_view.h", |
| 1659 "views/frame/web_contents_close_handler.cc", |
| 1660 "views/frame/web_contents_close_handler.h", |
| 1661 "views/frame/web_contents_close_handler_delegate.h", |
| 1662 "views/global_error_bubble_view.cc", |
| 1663 "views/global_error_bubble_view.h", |
| 1664 "views/hung_renderer_view.cc", |
| 1665 "views/hung_renderer_view.h", |
| 1666 "views/ime/ime_warning_bubble_view.cc", |
| 1667 "views/ime/ime_warning_bubble_view.h", |
| 1668 "views/importer/import_lock_dialog_view.cc", |
| 1669 "views/importer/import_lock_dialog_view.h", |
| 1670 "views/infobars/alternate_nav_infobar_view.cc", |
| 1671 "views/infobars/alternate_nav_infobar_view.h", |
| 1672 "views/infobars/confirm_infobar.cc", |
| 1673 "views/infobars/confirm_infobar.h", |
| 1674 "views/infobars/infobar_background.cc", |
| 1675 "views/infobars/infobar_background.h", |
| 1676 "views/infobars/infobar_container_view.cc", |
| 1677 "views/infobars/infobar_container_view.h", |
| 1678 "views/infobars/infobar_view.cc", |
| 1679 "views/infobars/infobar_view.h", |
| 1680 "views/load_complete_listener.cc", |
| 1681 "views/load_complete_listener.h", |
| 1682 "views/location_bar/background_with_1_px_border.cc", |
| 1683 "views/location_bar/background_with_1_px_border.h", |
| 1684 "views/location_bar/bubble_icon_view.cc", |
| 1685 "views/location_bar/bubble_icon_view.h", |
| 1686 "views/location_bar/content_setting_image_view.cc", |
| 1687 "views/location_bar/content_setting_image_view.h", |
| 1688 "views/location_bar/icon_label_bubble_view.cc", |
| 1689 "views/location_bar/icon_label_bubble_view.h", |
| 1690 "views/location_bar/keyword_hint_view.cc", |
| 1691 "views/location_bar/keyword_hint_view.h", |
| 1692 "views/location_bar/location_bar_decoration_view.cc", |
| 1693 "views/location_bar/location_bar_decoration_view.h", |
| 1694 "views/location_bar/location_bar_layout.cc", |
| 1695 "views/location_bar/location_bar_layout.h", |
| 1696 "views/location_bar/location_bar_view.cc", |
| 1697 "views/location_bar/location_bar_view.h", |
| 1698 "views/location_bar/location_icon_view.cc", |
| 1699 "views/location_bar/location_icon_view.h", |
| 1700 "views/location_bar/open_pdf_in_reader_view.cc", |
| 1701 "views/location_bar/open_pdf_in_reader_view.h", |
| 1702 "views/location_bar/page_action_image_view.cc", |
| 1703 "views/location_bar/page_action_image_view.h", |
| 1704 "views/location_bar/page_action_with_badge_view.cc", |
| 1705 "views/location_bar/page_action_with_badge_view.h", |
| 1706 "views/location_bar/selected_keyword_view.cc", |
| 1707 "views/location_bar/selected_keyword_view.h", |
| 1708 "views/location_bar/star_view.cc", |
| 1709 "views/location_bar/star_view.h", |
| 1710 "views/location_bar/zoom_bubble_view.cc", |
| 1711 "views/location_bar/zoom_bubble_view.h", |
| 1712 "views/location_bar/zoom_view.cc", |
| 1713 "views/location_bar/zoom_view.h", |
| 1714 "views/omnibox/omnibox_popup_contents_view.cc", |
| 1715 "views/omnibox/omnibox_popup_contents_view.h", |
| 1716 "views/omnibox/omnibox_result_view.cc", |
| 1717 "views/omnibox/omnibox_result_view.h", |
| 1718 "views/omnibox/omnibox_view_views.cc", |
| 1719 "views/omnibox/omnibox_view_views.h", |
| 1720 "views/open_pdf_in_reader_bubble_view.cc", |
| 1721 "views/open_pdf_in_reader_bubble_view.h", |
| 1722 "views/outdated_upgrade_bubble_view.cc", |
| 1723 "views/outdated_upgrade_bubble_view.h", |
| 1724 "views/passwords/account_chooser_dialog_view.cc", |
| 1725 "views/passwords/account_chooser_dialog_view.h", |
| 1726 "views/passwords/auto_signin_first_run_dialog_view.cc", |
| 1727 "views/passwords/auto_signin_first_run_dialog_view.h", |
| 1728 "views/passwords/credentials_item_view.cc", |
| 1729 "views/passwords/credentials_item_view.h", |
| 1730 "views/passwords/credentials_selection_view.cc", |
| 1731 "views/passwords/credentials_selection_view.h", |
| 1732 "views/passwords/manage_password_items_view.cc", |
| 1733 "views/passwords/manage_password_items_view.h", |
| 1734 "views/passwords/manage_passwords_bubble_view.cc", |
| 1735 "views/passwords/manage_passwords_bubble_view.h", |
| 1736 "views/passwords/manage_passwords_icon_views.cc", |
| 1737 "views/passwords/manage_passwords_icon_views.h", |
| 1738 "views/process_singleton_dialog_linux.cc", |
| 1739 "views/profiles/profile_indicator_icon.cc", |
| 1740 "views/profiles/profile_indicator_icon.h", |
| 1741 "views/profiles/signin_view_controller_delegate_views.cc", |
| 1742 "views/profiles/signin_view_controller_delegate_views.h", |
| 1743 "views/profiles/user_manager_view.cc", |
| 1744 "views/profiles/user_manager_view.h", |
| 1745 "views/proximity_auth/proximity_auth_error_bubble_view.cc", |
| 1746 "views/proximity_auth/proximity_auth_error_bubble_view.h", |
| 1747 "views/session_crashed_bubble_view.cc", |
| 1748 "views/session_crashed_bubble_view.h", |
| 1749 "views/simple_message_box_views.cc", |
| 1750 "views/ssl_client_certificate_selector.cc", |
| 1751 "views/ssl_client_certificate_selector.h", |
| 1752 "views/status_bubble_views.cc", |
| 1753 "views/status_bubble_views.h", |
| 1754 "views/status_icons/status_icon_win.cc", |
| 1755 "views/status_icons/status_icon_win.h", |
| 1756 "views/status_icons/status_tray_linux.cc", |
| 1757 "views/status_icons/status_tray_linux.h", |
| 1758 "views/status_icons/status_tray_state_changer_win.cc", |
| 1759 "views/status_icons/status_tray_state_changer_win.h", |
| 1760 "views/status_icons/status_tray_win.cc", |
| 1761 "views/status_icons/status_tray_win.h", |
| 1762 "views/tab_dialogs_views.cc", |
| 1763 "views/tab_dialogs_views.h", |
| 1764 "views/tab_icon_view.cc", |
| 1765 "views/tab_icon_view.h", |
| 1766 "views/tab_modal_confirm_dialog_views.cc", |
| 1767 "views/tab_modal_confirm_dialog_views.h", |
| 1768 "views/tabs/alert_indicator_button.cc", |
| 1769 "views/tabs/alert_indicator_button.h", |
| 1770 "views/tabs/browser_tab_strip_controller.cc", |
| 1771 "views/tabs/browser_tab_strip_controller.h", |
| 1772 "views/tabs/stacked_tab_strip_layout.cc", |
| 1773 "views/tabs/stacked_tab_strip_layout.h", |
| 1774 "views/tabs/tab.cc", |
| 1775 "views/tabs/tab.h", |
| 1776 "views/tabs/tab_controller.h", |
| 1777 "views/tabs/tab_drag_controller.cc", |
| 1778 "views/tabs/tab_drag_controller.h", |
| 1779 "views/tabs/tab_strip.cc", |
| 1780 "views/tabs/tab_strip.h", |
| 1781 "views/tabs/tab_strip_controller.h", |
| 1782 "views/tabs/tab_strip_layout.cc", |
| 1783 "views/tabs/tab_strip_layout.h", |
| 1784 "views/tabs/window_finder.cc", |
| 1785 "views/tabs/window_finder.h", |
| 1786 "views/tabs/window_finder_chromeos.cc", |
| 1787 "views/tabs/window_finder_win.cc", |
| 1788 "views/theme_copying_widget.cc", |
| 1789 "views/theme_copying_widget.h", |
| 1790 "views/toolbar/app_menu.cc", |
| 1791 "views/toolbar/app_menu.h", |
| 1792 "views/toolbar/app_menu_button.cc", |
| 1793 "views/toolbar/app_menu_button.h", |
| 1794 "views/toolbar/app_menu_observer.h", |
| 1795 "views/toolbar/back_button.cc", |
| 1796 "views/toolbar/back_button.h", |
| 1797 "views/toolbar/browser_actions_container.cc", |
| 1798 "views/toolbar/browser_actions_container.h", |
| 1799 "views/toolbar/extension_toolbar_menu_view.cc", |
| 1800 "views/toolbar/extension_toolbar_menu_view.h", |
| 1801 "views/toolbar/home_button.cc", |
| 1802 "views/toolbar/home_button.h", |
| 1803 "views/toolbar/reload_button.cc", |
| 1804 "views/toolbar/reload_button.h", |
| 1805 "views/toolbar/toolbar_action_view.cc", |
| 1806 "views/toolbar/toolbar_action_view.h", |
| 1807 "views/toolbar/toolbar_action_view_delegate_views.h", |
| 1808 "views/toolbar/toolbar_actions_bar_bubble_views.cc", |
| 1809 "views/toolbar/toolbar_actions_bar_bubble_views.h", |
| 1810 "views/toolbar/toolbar_button.cc", |
| 1811 "views/toolbar/toolbar_button.h", |
| 1812 "views/toolbar/toolbar_view.cc", |
| 1813 "views/toolbar/toolbar_view.h", |
| 1814 "views/touch_uma/touch_uma.h", |
| 1815 "views/translate/translate_bubble_view.cc", |
| 1816 "views/translate/translate_bubble_view.h", |
| 1817 "views/translate/translate_icon_view.cc", |
| 1818 "views/translate/translate_icon_view.h", |
| 1819 "views/update_recommended_message_box.cc", |
| 1820 "views/update_recommended_message_box.h", |
| 1821 "views/validation_message_bubble_view.cc", |
| 1822 "views/validation_message_bubble_view.h", |
| 1823 "views/website_settings/chooser_bubble_ui_view.cc", |
| 1824 "views/website_settings/chooser_bubble_ui_view.h", |
| 1825 "views/website_settings/permission_prompt_impl_views.cc", |
| 1826 ] |
| 345 if (use_aura) { | 1827 if (use_aura) { |
| 346 deps += [ | 1828 deps += [ |
| 347 "//services/ui/public/cpp", | 1829 "//services/ui/public/cpp", |
| 348 "//services/ui/public/interfaces", | 1830 "//services/ui/public/interfaces", |
| 349 ] | 1831 ] |
| 350 | 1832 |
| 351 # TODO(erg): These files hard depend on mus, and thus can't be in a gyp | 1833 # TODO(erg): These files hard depend on mus, and thus can't be in a gyp |
| 352 # build. When gyp goes away, merge this back into the sources list. | 1834 # build. When gyp goes away, merge this back into the sources list. |
| 353 sources += [ | 1835 sources += [ |
| 354 "views/tabs/window_finder_mus.cc", | 1836 "views/tabs/window_finder_mus.cc", |
| 355 "views/tabs/window_finder_mus.h", | 1837 "views/tabs/window_finder_mus.h", |
| 356 ] | 1838 ] |
| 357 } | 1839 } |
| 358 deps += [ "//ui/views/mus" ] | 1840 deps += [ "//ui/views/mus" ] |
| 359 | |
| 360 if (enable_extensions) { | |
| 361 sources += rebase_path( | |
| 362 gypi_values.chrome_browser_ui_views_extensions_non_mac_sources, | |
| 363 ".", | |
| 364 "//chrome") | |
| 365 } | |
| 366 } | 1841 } |
| 367 if (use_ash) { | 1842 if (use_ash) { |
| 368 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, | 1843 sources += [ |
| 369 ".", | 1844 "views/frame/browser_frame_ash.cc", |
| 370 "//chrome") | 1845 "views/frame/browser_frame_ash.h", |
| 1846 "views/frame/browser_header_painter_ash.cc", |
| 1847 "views/frame/browser_header_painter_ash.h", |
| 1848 "views/frame/browser_non_client_frame_view_ash.cc", |
| 1849 "views/frame/browser_non_client_frame_view_ash.h", |
| 1850 "views/frame/immersive_context_mus.cc", |
| 1851 "views/frame/immersive_context_mus.h", |
| 1852 "views/frame/immersive_handler_factory_mus.cc", |
| 1853 "views/frame/immersive_handler_factory_mus.h", |
| 1854 "views/frame/immersive_mode_controller_ash.cc", |
| 1855 "views/frame/immersive_mode_controller_ash.h", |
| 1856 "views/frame/web_app_left_header_view_ash.cc", |
| 1857 "views/frame/web_app_left_header_view_ash.h", |
| 1858 "views/tabs/window_finder_ash.cc", |
| 1859 ] |
| 371 } | 1860 } |
| 372 } | 1861 } |
| 373 if (use_gio) { | 1862 if (use_gio) { |
| 374 deps += [ "//build/linux/libgio" ] | 1863 deps += [ "//build/linux/libgio" ] |
| 375 } | 1864 } |
| 376 if (use_aura && !use_ozone && is_desktop_linux) { | 1865 if (use_aura && !use_ozone && is_desktop_linux) { |
| 377 deps += [ | 1866 deps += [ |
| 378 # gtk2 is the only component that can interact with gtk2 in our new | 1867 # gtk2 is the only component that can interact with gtk2 in our new |
| 379 # world. | 1868 # world. |
| 380 "//chrome/browser/ui/libgtk2ui", | 1869 "//chrome/browser/ui/libgtk2ui", |
| 381 ] | 1870 ] |
| 382 } | 1871 } |
| 383 if (is_win || is_mac || is_desktop_linux) { | 1872 if (is_win || is_mac || is_desktop_linux) { |
| 384 sources += rebase_path(gypi_values.chrome_browser_ui_desktop_sources, | 1873 sources += [ |
| 385 ".", | 1874 "avatar_button_error_controller.cc", |
| 386 "//chrome") | 1875 "avatar_button_error_controller.h", |
| 1876 "avatar_button_error_controller_delegate.h", |
| 1877 "startup/default_browser_infobar_delegate.cc", |
| 1878 "startup/default_browser_infobar_delegate.h", |
| 1879 "startup/default_browser_prompt.cc", |
| 1880 "startup/default_browser_prompt.h", |
| 1881 "startup/default_browser_prompt_win.cc", |
| 1882 "sync/one_click_signin_links_delegate.h", |
| 1883 "sync/one_click_signin_links_delegate_impl.cc", |
| 1884 "sync/one_click_signin_links_delegate_impl.h", |
| 1885 "sync/one_click_signin_sync_observer.cc", |
| 1886 "sync/one_click_signin_sync_observer.h", |
| 1887 "sync/one_click_signin_sync_starter.cc", |
| 1888 "sync/one_click_signin_sync_starter.h", |
| 1889 "views/frame/avatar_button_manager.cc", |
| 1890 "views/frame/avatar_button_manager.h", |
| 1891 "views/profiles/avatar_button_delegate.h", |
| 1892 "views/profiles/avatar_button_style.h", |
| 1893 "views/profiles/new_avatar_button.cc", |
| 1894 "views/profiles/new_avatar_button.h", |
| 1895 "webui/app_launcher_page_ui.cc", |
| 1896 "webui/app_launcher_page_ui.h", |
| 1897 "webui/settings/settings_default_browser_handler.cc", |
| 1898 "webui/settings/settings_default_browser_handler.h", |
| 1899 "webui/settings/system_handler.cc", |
| 1900 "webui/settings/system_handler.h", |
| 1901 "webui/settings_utils_linux.cc", |
| 1902 "webui/settings_utils_mac.mm", |
| 1903 "webui/settings_utils_win.cc", |
| 1904 "webui/signin/inline_login_handler.cc", |
| 1905 "webui/signin/inline_login_handler.h", |
| 1906 "webui/signin/inline_login_handler_impl.cc", |
| 1907 "webui/signin/inline_login_handler_impl.h", |
| 1908 "webui/signin/inline_login_ui.cc", |
| 1909 "webui/signin/inline_login_ui.h", |
| 1910 "webui/signin/md_user_manager_ui.cc", |
| 1911 "webui/signin/md_user_manager_ui.h", |
| 1912 "webui/signin/signin_create_profile_handler.cc", |
| 1913 "webui/signin/signin_create_profile_handler.h", |
| 1914 "webui/signin/signin_supervised_user_import_handler.cc", |
| 1915 "webui/signin/signin_supervised_user_import_handler.h", |
| 1916 "webui/signin/sync_confirmation_handler.cc", |
| 1917 "webui/signin/sync_confirmation_handler.h", |
| 1918 "webui/signin/sync_confirmation_ui.cc", |
| 1919 "webui/signin/sync_confirmation_ui.h", |
| 1920 "webui/signin/user_manager_screen_handler.cc", |
| 1921 "webui/signin/user_manager_screen_handler.h", |
| 1922 "webui/signin/user_manager_ui.cc", |
| 1923 "webui/signin/user_manager_ui.h", |
| 1924 ] |
| 387 if (is_mac && !mac_views_browser) { | 1925 if (is_mac && !mac_views_browser) { |
| 388 sources -= [ | 1926 sources -= [ |
| 389 # This is not explicitly excluded in GYP, but I think the static | 1927 # This is not explicitly excluded in GYP, but I think the static |
| 390 # library linking rules means it's never referenced when compiling in | 1928 # library linking rules means it's never referenced when compiling in |
| 391 # non-Views mode on Mac. It appears not to link in that case. | 1929 # non-Views mode on Mac. It appears not to link in that case. |
| 392 "views/frame/avatar_button_manager.cc", | 1930 "views/frame/avatar_button_manager.cc", |
| 393 "views/frame/avatar_button_manager.h", | 1931 "views/frame/avatar_button_manager.h", |
| 394 "views/profiles/new_avatar_button.cc", | 1932 "views/profiles/new_avatar_button.cc", |
| 395 "views/profiles/new_avatar_button.h", | 1933 "views/profiles/new_avatar_button.h", |
| 396 ] | 1934 ] |
| 397 } | 1935 } |
| 398 } | 1936 } |
| 399 if (use_aura) { | 1937 if (use_aura) { |
| 400 sources += | 1938 sources += [ |
| 401 rebase_path(gypi_values.chrome_browser_ui_aura_sources, ".", "//chrome") | 1939 "aura/accessibility/automation_manager_aura.cc", |
| 1940 "aura/accessibility/automation_manager_aura.h", |
| 1941 "aura/accessibility/ax_root_obj_wrapper.cc", |
| 1942 "aura/accessibility/ax_root_obj_wrapper.h", |
| 1943 "aura/accessibility/ax_tree_source_aura.cc", |
| 1944 "aura/accessibility/ax_tree_source_aura.h", |
| 1945 "aura/native_window_tracker_aura.cc", |
| 1946 "aura/native_window_tracker_aura.h", |
| 1947 "aura/tab_contents/web_drag_bookmark_handler_aura.cc", |
| 1948 "aura/tab_contents/web_drag_bookmark_handler_aura.h", |
| 1949 "ime/ime_window.cc", |
| 1950 "ime/ime_window.h", |
| 1951 "views/accelerator_utils_aura.cc", |
| 1952 "views/apps/app_window_desktop_native_widget_aura_win.cc", |
| 1953 "views/apps/app_window_desktop_native_widget_aura_win.h", |
| 1954 "views/apps/app_window_desktop_window_tree_host_win.cc", |
| 1955 "views/apps/app_window_desktop_window_tree_host_win.h", |
| 1956 "views/apps/app_window_easy_resize_window_targeter.cc", |
| 1957 "views/apps/app_window_easy_resize_window_targeter.h", |
| 1958 "views/apps/chrome_app_window_client_views_chromeos.cc", |
| 1959 "views/apps/chrome_app_window_client_views_win.cc", |
| 1960 "views/apps/chrome_native_app_window_views_aura.cc", |
| 1961 "views/apps/chrome_native_app_window_views_aura.h", |
| 1962 "views/apps/chrome_native_app_window_views_win.cc", |
| 1963 "views/apps/chrome_native_app_window_views_win.h", |
| 1964 "views/apps/glass_app_window_frame_view_win.cc", |
| 1965 "views/apps/glass_app_window_frame_view_win.h", |
| 1966 "views/apps/shaped_app_window_targeter.cc", |
| 1967 "views/apps/shaped_app_window_targeter.h", |
| 1968 "views/color_chooser_aura.cc", |
| 1969 "views/color_chooser_aura.h", |
| 1970 "views/crypto_module_password_dialog_view.cc", |
| 1971 "views/crypto_module_password_dialog_view.h", |
| 1972 "views/desktop_capture/desktop_media_list_view.cc", |
| 1973 "views/desktop_capture/desktop_media_list_view.h", |
| 1974 "views/desktop_capture/desktop_media_picker_views.cc", |
| 1975 "views/desktop_capture/desktop_media_picker_views.h", |
| 1976 "views/desktop_capture/desktop_media_source_view.cc", |
| 1977 "views/desktop_capture/desktop_media_source_view.h", |
| 1978 "views/desktop_media_picker_views_deprecated.cc", |
| 1979 "views/desktop_media_picker_views_deprecated.h", |
| 1980 "views/dropdown_bar_host_aura.cc", |
| 1981 "views/frame/browser_non_client_frame_view_factory_views.cc", |
| 1982 "views/ime/ime_window_frame_view.cc", |
| 1983 "views/ime/ime_window_frame_view.h", |
| 1984 "views/ime/ime_window_view.cc", |
| 1985 "views/ime/ime_window_view.h", |
| 1986 "views/renderer_context_menu/render_view_context_menu_views.cc", |
| 1987 "views/renderer_context_menu/render_view_context_menu_views.h", |
| 1988 "views/sad_tab_view.cc", |
| 1989 "views/sad_tab_view.h", |
| 1990 "views/tab_contents/chrome_web_contents_view_delegate_views.cc", |
| 1991 "views/tab_contents/chrome_web_contents_view_delegate_views.h", |
| 1992 "window_sizer/window_sizer_aura.cc", |
| 1993 ] |
| 402 deps += [ | 1994 deps += [ |
| 403 # aura uses some of ash resources. | 1995 # aura uses some of ash resources. |
| 404 "//ash/resources", | 1996 "//ash/resources", |
| 405 "//ui/aura", | 1997 "//ui/aura", |
| 406 "//ui/keyboard", | 1998 "//ui/keyboard", |
| 407 "//ui/keyboard:keyboard_with_content", | 1999 "//ui/keyboard:keyboard_with_content", |
| 408 "//ui/keyboard:resources", | 2000 "//ui/keyboard:resources", |
| 409 "//ui/wm", | 2001 "//ui/wm", |
| 410 ] | 2002 ] |
| 411 if (!is_chromeos) { | 2003 if (!is_chromeos) { |
| 412 sources += rebase_path(gypi_values.chrome_browser_ui_aura_non_chromeos, | 2004 sources += [ |
| 413 ".", | 2005 "views/frame/desktop_browser_frame_aura.cc", |
| 414 "//chrome") | 2006 "views/frame/desktop_browser_frame_aura.h", |
| 2007 "views/message_center/message_center_frame_view.cc", |
| 2008 "views/message_center/message_center_frame_view.h", |
| 2009 "views/message_center/web_notification_tray.cc", |
| 2010 "views/message_center/web_notification_tray.h", |
| 2011 ] |
| 415 } | 2012 } |
| 416 } | 2013 } |
| 417 if (ui_compositor_image_transport) { | 2014 if (ui_compositor_image_transport) { |
| 418 deps += [ "//ui/gl" ] | 2015 deps += [ "//ui/gl" ] |
| 419 } | 2016 } |
| 420 if (use_nss_certs) { | 2017 if (use_nss_certs) { |
| 421 sources += | 2018 sources += [ |
| 422 rebase_path(gypi_values.chrome_browser_ui_nss_sources, ".", "//chrome") | 2019 "crypto_module_delegate_nss.cc", |
| 2020 "crypto_module_delegate_nss.h", |
| 2021 "crypto_module_password_dialog_nss.cc", |
| 2022 "crypto_module_password_dialog_nss.h", |
| 2023 "webui/options/certificate_manager_handler.cc", |
| 2024 "webui/options/certificate_manager_handler.h", |
| 2025 "webui/settings/certificates_handler.cc", |
| 2026 "webui/settings/certificates_handler.h", |
| 2027 ] |
| 423 } | 2028 } |
| 424 if (is_mac || is_win) { | 2029 if (is_mac || is_win) { |
| 425 sources += rebase_path(gypi_values.chrome_browser_ui_non_nss_sources, | 2030 sources += [ |
| 426 ".", | 2031 "webui/settings/native_certificates_handler.cc", |
| 427 "//chrome") | 2032 "webui/settings/native_certificates_handler.h", |
| 2033 ] |
| 428 } | 2034 } |
| 429 if (!enable_themes) { | 2035 if (enable_themes) { |
| 430 sources -= [ "webui/theme_source.cc" ] | 2036 sources += [ |
| 2037 "webui/theme_source.cc", |
| 2038 "webui/theme_source.h", |
| 2039 ] |
| 431 } | 2040 } |
| 432 if (enable_print_preview) { | 2041 if (enable_print_preview) { |
| 433 sources += rebase_path(gypi_values.chrome_browser_ui_print_preview_sources, | 2042 sources += [ |
| 434 ".", | 2043 "webui/print_preview/extension_printer_handler.cc", |
| 435 "//chrome") | 2044 "webui/print_preview/extension_printer_handler.h", |
| 2045 "webui/print_preview/print_preview_handler.cc", |
| 2046 "webui/print_preview/print_preview_handler.h", |
| 2047 "webui/print_preview/print_preview_ui.cc", |
| 2048 "webui/print_preview/print_preview_ui.h", |
| 2049 "webui/print_preview/printer_handler.cc", |
| 2050 "webui/print_preview/printer_handler.h", |
| 2051 "webui/print_preview/sticky_settings.cc", |
| 2052 "webui/print_preview/sticky_settings.h", |
| 2053 ] |
| 436 } | 2054 } |
| 437 | 2055 |
| 438 if (is_android) { | 2056 if (is_android) { |
| 439 deps += [ | 2057 deps += [ |
| 440 "//components/navigation_interception", | 2058 "//components/navigation_interception", |
| 441 "//crypto:platform", | 2059 "//crypto:platform", |
| 442 "//device/usb/mojo", | 2060 "//device/usb/mojo", |
| 443 "//device/usb/public/interfaces", | 2061 "//device/usb/public/interfaces", |
| 444 "//ui/android", | 2062 "//ui/android", |
| 445 ] | 2063 ] |
| 446 | 2064 |
| 447 if (android_java_ui) { | 2065 if (android_java_ui) { |
| 448 sources += | 2066 sources += [ |
| 449 rebase_path(gypi_values.chrome_browser_ui_android_java_ui_sources, | 2067 "android/autofill/autofill_keyboard_accessory_view.cc", |
| 450 ".", | 2068 "android/autofill/autofill_keyboard_accessory_view.h", |
| 451 "//chrome") | 2069 "android/autofill/autofill_logger_android.cc", |
| 2070 "android/autofill/autofill_logger_android.h", |
| 2071 "android/autofill/autofill_popup_view_android.cc", |
| 2072 "android/autofill/autofill_popup_view_android.h", |
| 2073 "android/autofill/card_unmask_prompt_view_android.cc", |
| 2074 "android/autofill/card_unmask_prompt_view_android.h", |
| 2075 "android/autofill/credit_card_scanner_view_android.cc", |
| 2076 "android/autofill/credit_card_scanner_view_android.h", |
| 2077 "android/autofill/password_generation_popup_view_android.cc", |
| 2078 "android/autofill/password_generation_popup_view_android.h", |
| 2079 "android/bluetooth_chooser_android.cc", |
| 2080 "android/bluetooth_chooser_android.h", |
| 2081 "android/certificate_viewer_android.cc", |
| 2082 "android/certificate_viewer_android.h", |
| 2083 "android/chrome_http_auth_handler.cc", |
| 2084 "android/chrome_http_auth_handler.h", |
| 2085 "android/color_chooser_dialog_android.cc", |
| 2086 "android/connection_info_popup_android.cc", |
| 2087 "android/connection_info_popup_android.h", |
| 2088 "android/content_settings/popup_blocked_infobar_delegate.cc", |
| 2089 "android/content_settings/popup_blocked_infobar_delegate.h", |
| 2090 "android/content_settings/subresource_filter_infobar_delegate.cc", |
| 2091 "android/content_settings/subresource_filter_infobar_delegate.h", |
| 2092 "android/context_menu_helper.cc", |
| 2093 "android/context_menu_helper.h", |
| 2094 "android/infobars/app_banner_infobar_android.cc", |
| 2095 "android/infobars/app_banner_infobar_android.h", |
| 2096 "android/infobars/autofill_credit_card_filling_infobar.cc", |
| 2097 "android/infobars/autofill_credit_card_filling_infobar.h", |
| 2098 "android/infobars/autofill_save_card_infobar.cc", |
| 2099 "android/infobars/autofill_save_card_infobar.h", |
| 2100 "android/infobars/confirm_infobar.cc", |
| 2101 "android/infobars/confirm_infobar.h", |
| 2102 "android/infobars/data_reduction_promo_infobar.cc", |
| 2103 "android/infobars/data_reduction_promo_infobar.h", |
| 2104 "android/infobars/download_overwrite_infobar.cc", |
| 2105 "android/infobars/download_overwrite_infobar.h", |
| 2106 "android/infobars/generated_password_saved_infobar.cc", |
| 2107 "android/infobars/generated_password_saved_infobar.h", |
| 2108 "android/infobars/grouped_permission_infobar.cc", |
| 2109 "android/infobars/grouped_permission_infobar.h", |
| 2110 "android/infobars/infobar_android.cc", |
| 2111 "android/infobars/infobar_android.h", |
| 2112 "android/infobars/infobar_container_android.cc", |
| 2113 "android/infobars/infobar_container_android.h", |
| 2114 "android/infobars/instant_apps_infobar.cc", |
| 2115 "android/infobars/instant_apps_infobar.h", |
| 2116 "android/infobars/permission_infobar.cc", |
| 2117 "android/infobars/permission_infobar.h", |
| 2118 "android/infobars/save_password_infobar.cc", |
| 2119 "android/infobars/save_password_infobar.h", |
| 2120 "android/infobars/simple_confirm_infobar_builder.cc", |
| 2121 "android/infobars/simple_confirm_infobar_builder.h", |
| 2122 "android/infobars/translate_infobar.cc", |
| 2123 "android/infobars/translate_infobar.h", |
| 2124 "android/infobars/update_password_infobar.cc", |
| 2125 "android/infobars/update_password_infobar.h", |
| 2126 "android/javascript_app_modal_dialog_android.cc", |
| 2127 "android/login_handler_android.cc", |
| 2128 "android/omnibox/omnibox_url_emphasizer.cc", |
| 2129 "android/omnibox/omnibox_url_emphasizer.h", |
| 2130 "android/omnibox/omnibox_view_util.cc", |
| 2131 "android/omnibox/omnibox_view_util.h", |
| 2132 "android/simple_message_box_android.cc", |
| 2133 "android/snackbars/auto_signin_prompt_controller.cc", |
| 2134 "android/snackbars/auto_signin_prompt_controller.h", |
| 2135 "android/ssl_client_certificate_request.cc", |
| 2136 "android/ssl_client_certificate_request.h", |
| 2137 "android/tab_contents/chrome_web_contents_view_delegate_android.cc", |
| 2138 "android/tab_contents/chrome_web_contents_view_delegate_android.h", |
| 2139 "android/tab_model/android_live_tab_context.cc", |
| 2140 "android/tab_model/android_live_tab_context.h", |
| 2141 "android/tab_model/single_tab_model.cc", |
| 2142 "android/tab_model/single_tab_model.h", |
| 2143 "android/tab_model/tab_model.cc", |
| 2144 "android/tab_model/tab_model.h", |
| 2145 "android/tab_model/tab_model_jni_bridge.cc", |
| 2146 "android/tab_model/tab_model_jni_bridge.h", |
| 2147 "android/tab_model/tab_model_list.cc", |
| 2148 "android/tab_model/tab_model_list.h", |
| 2149 "android/toolbar/toolbar_model_android.cc", |
| 2150 "android/toolbar/toolbar_model_android.h", |
| 2151 "android/usb_chooser_dialog_android.cc", |
| 2152 "android/usb_chooser_dialog_android.h", |
| 2153 "android/view_android_helper.cc", |
| 2154 "android/view_android_helper.h", |
| 2155 "android/website_settings_popup_android.cc", |
| 2156 "android/website_settings_popup_android.h", |
| 2157 "browser_otr_state_android.cc", |
| 2158 "screen_capture_notification_ui_stub.cc", |
| 2159 "webui/offline/offline_internals_ui.cc", |
| 2160 "webui/offline/offline_internals_ui.h", |
| 2161 "webui/offline/offline_internals_ui_message_handler.cc", |
| 2162 "webui/offline/offline_internals_ui_message_handler.h", |
| 2163 "webui/popular_sites_internals_message_handler.cc", |
| 2164 "webui/popular_sites_internals_message_handler.h", |
| 2165 "webui/popular_sites_internals_ui.cc", |
| 2166 "webui/popular_sites_internals_ui.h", |
| 2167 "webui/snippets_internals_message_handler.cc", |
| 2168 "webui/snippets_internals_message_handler.h", |
| 2169 "webui/snippets_internals_ui.cc", |
| 2170 "webui/snippets_internals_ui.h", |
| 2171 ] |
| 452 deps += [ | 2172 deps += [ |
| 453 "//chrome/browser:jni_headers", | 2173 "//chrome/browser:jni_headers", |
| 454 "//components/web_contents_delegate_android", | 2174 "//components/web_contents_delegate_android", |
| 455 ] | 2175 ] |
| 456 deps -= [ "//ui/events" ] | 2176 deps -= [ "//ui/events" ] |
| 457 } | 2177 } |
| 458 } else { | 2178 } else { |
| 459 sources += [ "browser_window.h" ] | 2179 sources += [ "browser_window.h" ] |
| 460 } | 2180 } |
| 461 | 2181 |
| 462 if (is_mac) { | 2182 if (is_mac) { |
| 463 sources += | 2183 sources += [ |
| 464 rebase_path(gypi_values.chrome_browser_ui_mac_sources, ".", "//chrome") | 2184 "certificate_viewer_mac.h", |
| 2185 "certificate_viewer_mac.mm", |
| 2186 "chrome_style.cc", |
| 2187 "chrome_style.h", |
| 2188 "cocoa/accelerator_utils_cocoa.mm", |
| 2189 "cocoa/accelerators_cocoa.h", |
| 2190 "cocoa/accelerators_cocoa.mm", |
| 2191 "cocoa/apps/app_shim_menu_controller_mac.h", |
| 2192 "cocoa/apps/app_shim_menu_controller_mac.mm", |
| 2193 "cocoa/apps/quit_with_apps_controller_mac.cc", |
| 2194 "cocoa/apps/quit_with_apps_controller_mac.h", |
| 2195 "cocoa/apps/titlebar_background_view.h", |
| 2196 "cocoa/apps/titlebar_background_view.mm", |
| 2197 "cocoa/bookmarks/bookmark_menu_bridge.h", |
| 2198 "cocoa/bookmarks/bookmark_menu_bridge.mm", |
| 2199 "cocoa/bookmarks/bookmark_menu_cocoa_controller.h", |
| 2200 "cocoa/bookmarks/bookmark_menu_cocoa_controller.mm", |
| 2201 "cocoa/browser_window_command_handler.h", |
| 2202 "cocoa/browser_window_command_handler.mm", |
| 2203 "cocoa/chrome_command_dispatcher_delegate.h", |
| 2204 "cocoa/chrome_command_dispatcher_delegate.mm", |
| 2205 "cocoa/color_chooser_mac.mm", |
| 2206 "cocoa/confirm_quit.h", |
| 2207 "cocoa/confirm_quit_panel_controller.h", |
| 2208 "cocoa/confirm_quit_panel_controller.mm", |
| 2209 "cocoa/dock_icon.h", |
| 2210 "cocoa/dock_icon.mm", |
| 2211 "cocoa/download/download_item_drag_mac.mm", |
| 2212 "cocoa/download/download_util_mac.h", |
| 2213 "cocoa/download/download_util_mac.mm", |
| 2214 "cocoa/first_run_dialog.h", |
| 2215 "cocoa/first_run_dialog.mm", |
| 2216 "cocoa/handoff_active_url_observer.cc", |
| 2217 "cocoa/handoff_active_url_observer.h", |
| 2218 "cocoa/handoff_active_url_observer_bridge.h", |
| 2219 "cocoa/handoff_active_url_observer_bridge.mm", |
| 2220 "cocoa/handoff_active_url_observer_delegate.h", |
| 2221 "cocoa/history_menu_bridge.h", |
| 2222 "cocoa/history_menu_bridge.mm", |
| 2223 "cocoa/history_menu_cocoa_controller.h", |
| 2224 "cocoa/history_menu_cocoa_controller.mm", |
| 2225 "cocoa/history_overlay_controller.h", |
| 2226 "cocoa/history_overlay_controller.mm", |
| 2227 "cocoa/key_equivalent_constants.h", |
| 2228 "cocoa/key_equivalent_constants.mm", |
| 2229 "cocoa/keystone_infobar_delegate.h", |
| 2230 "cocoa/keystone_infobar_delegate.mm", |
| 2231 "cocoa/l10n_util.h", |
| 2232 "cocoa/l10n_util.mm", |
| 2233 "cocoa/last_active_browser_cocoa.cc", |
| 2234 "cocoa/last_active_browser_cocoa.h", |
| 2235 "cocoa/media_picker/desktop_media_picker_bridge.h", |
| 2236 "cocoa/media_picker/desktop_media_picker_bridge.mm", |
| 2237 "cocoa/media_picker/desktop_media_picker_cocoa.h", |
| 2238 "cocoa/media_picker/desktop_media_picker_cocoa.mm", |
| 2239 "cocoa/media_picker/desktop_media_picker_controller.h", |
| 2240 "cocoa/media_picker/desktop_media_picker_controller.mm", |
| 2241 "cocoa/media_picker/desktop_media_picker_controller_deprecated.h", |
| 2242 "cocoa/media_picker/desktop_media_picker_controller_deprecated.mm", |
| 2243 "cocoa/media_picker/desktop_media_picker_item.h", |
| 2244 "cocoa/media_picker/desktop_media_picker_item.mm", |
| 2245 "cocoa/native_window_tracker_cocoa.h", |
| 2246 "cocoa/native_window_tracker_cocoa.mm", |
| 2247 "cocoa/notifications/message_center_tray_bridge.h", |
| 2248 "cocoa/notifications/message_center_tray_bridge.mm", |
| 2249 "cocoa/nsmenuitem_additions.h", |
| 2250 "cocoa/nsmenuitem_additions.mm", |
| 2251 "cocoa/profiles/profile_menu_controller.h", |
| 2252 "cocoa/profiles/profile_menu_controller.mm", |
| 2253 "cocoa/renderer_context_menu/render_view_context_menu_mac.h", |
| 2254 "cocoa/renderer_context_menu/render_view_context_menu_mac.mm", |
| 2255 "cocoa/status_icons/status_icon_mac.h", |
| 2256 "cocoa/status_icons/status_icon_mac.mm", |
| 2257 "cocoa/status_icons/status_tray_mac.h", |
| 2258 "cocoa/status_icons/status_tray_mac.mm", |
| 2259 "cocoa/tab_contents/chrome_web_contents_view_delegate_mac.h", |
| 2260 "cocoa/tab_contents/chrome_web_contents_view_delegate_mac.mm", |
| 2261 "cocoa/tab_contents/sad_tab_controller.h", |
| 2262 "cocoa/tab_contents/sad_tab_controller.mm", |
| 2263 "cocoa/tab_contents/sad_tab_view_cocoa.h", |
| 2264 "cocoa/tab_contents/sad_tab_view_cocoa.mm", |
| 2265 "cocoa/tab_contents/web_drag_bookmark_handler_mac.h", |
| 2266 "cocoa/tab_contents/web_drag_bookmark_handler_mac.mm", |
| 2267 "cocoa/ui_localizer.h", |
| 2268 "cocoa/ui_localizer.mm", |
| 2269 "cocoa/web_contents_modal_dialog_host_cocoa.h", |
| 2270 "cocoa/web_contents_modal_dialog_host_cocoa.mm", |
| 2271 |
| 2272 # TODO(estade): this class should be folded into |
| 2273 # manage_passwords_decoration.mm |
| 2274 "passwords/manage_passwords_icon.cc", |
| 2275 "passwords/manage_passwords_icon.h", |
| 2276 "web_contents_sizer.mm", |
| 2277 "webui/cast/cast_ui.cc", |
| 2278 "webui/cast/cast_ui.h", |
| 2279 ] |
| 465 deps += [ | 2280 deps += [ |
| 466 ":generate_localizer", | 2281 ":generate_localizer", |
| 467 "//third_party/apple_sample_code", | 2282 "//third_party/apple_sample_code", |
| 468 "//third_party/google_toolbox_for_mac", | 2283 "//third_party/google_toolbox_for_mac", |
| 469 "//third_party/molokocacao", | 2284 "//third_party/molokocacao", |
| 470 "//third_party/mozilla", | 2285 "//third_party/mozilla", |
| 471 "//ui/accelerated_widget_mac:accelerated_widget_mac", | 2286 "//ui/accelerated_widget_mac:accelerated_widget_mac", |
| 472 ] | 2287 ] |
| 473 if (mac_views_browser) { | 2288 if (mac_views_browser) { |
| 474 sources += rebase_path( | 2289 # MacViews sources that we still want to keep behind a compile-time flag. |
| 475 gypi_values.chrome_browser_ui_views_mac_experimental_sources, | 2290 # TODO(jackhou): Move items to general views sources out of here. |
| 476 ".", | 2291 sources += [ |
| 477 "//chrome") | 2292 "views/apps/chrome_app_window_client_views_mac.mm", |
| 478 sources += | 2293 "views/certificate_viewer_mac_views.mm", |
| 479 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources, | 2294 "views/dropdown_bar_host_mac.mm", |
| 480 ".", | 2295 "views/frame/browser_frame_mac.h", |
| 481 "//chrome") | 2296 "views/frame/browser_frame_mac.mm", |
| 482 sources += rebase_path( | 2297 "views/frame/browser_non_client_frame_view_factory_mac.mm", |
| 483 gypi_values.chrome_browser_ui_views_extensions_non_mac_sources, | 2298 "views/frame/browser_non_client_frame_view_mac.h", |
| 484 ".", | 2299 "views/frame/browser_non_client_frame_view_mac.mm", |
| 485 "//chrome") | 2300 "views/frame/native_browser_frame_factory_mac.mm", |
| 486 | 2301 "views/infobars/legacy_infobars_mac.cc", |
| 487 sources -= [ | 2302 "views/tabs/window_finder_mac.mm", |
| 488 "views/extensions/extension_popup_aura.cc", | |
| 489 "views/extensions/extension_popup_aura.h", | |
| 490 ] | 2303 ] |
| 491 | |
| 492 deps += [ "//extensions/components/native_app_window" ] | 2304 deps += [ "//extensions/components/native_app_window" ] |
| 493 } else { | 2305 } else { |
| 494 sources += rebase_path(gypi_values.chrome_browser_ui_cocoa_sources, | 2306 sources += [ |
| 495 ".", | 2307 "cocoa/animatable_image.h", |
| 496 "//chrome") | 2308 "cocoa/animatable_image.mm", |
| 2309 "cocoa/animatable_view.h", |
| 2310 "cocoa/animatable_view.mm", |
| 2311 "cocoa/app_menu/app_menu_button_cell.h", |
| 2312 "cocoa/app_menu/app_menu_button_cell.mm", |
| 2313 "cocoa/app_menu/app_menu_controller.h", |
| 2314 "cocoa/app_menu/app_menu_controller.mm", |
| 2315 "cocoa/app_menu/menu_tracked_button.h", |
| 2316 "cocoa/app_menu/menu_tracked_button.mm", |
| 2317 "cocoa/app_menu/menu_tracked_root_view.h", |
| 2318 "cocoa/app_menu/menu_tracked_root_view.mm", |
| 2319 "cocoa/app_menu/recent_tabs_menu_model_delegate.h", |
| 2320 "cocoa/app_menu/recent_tabs_menu_model_delegate.mm", |
| 2321 "cocoa/applescript/apple_event_util.h", |
| 2322 "cocoa/applescript/apple_event_util.mm", |
| 2323 "cocoa/applescript/bookmark_folder_applescript.h", |
| 2324 "cocoa/applescript/bookmark_folder_applescript.mm", |
| 2325 "cocoa/applescript/bookmark_item_applescript.h", |
| 2326 "cocoa/applescript/bookmark_item_applescript.mm", |
| 2327 "cocoa/applescript/bookmark_node_applescript.h", |
| 2328 "cocoa/applescript/bookmark_node_applescript.mm", |
| 2329 "cocoa/applescript/browsercrapplication+applescript.h", |
| 2330 "cocoa/applescript/browsercrapplication+applescript.mm", |
| 2331 "cocoa/applescript/constants_applescript.h", |
| 2332 "cocoa/applescript/constants_applescript.mm", |
| 2333 "cocoa/applescript/element_applescript.h", |
| 2334 "cocoa/applescript/element_applescript.mm", |
| 2335 "cocoa/applescript/error_applescript.h", |
| 2336 "cocoa/applescript/error_applescript.mm", |
| 2337 "cocoa/applescript/metrics_applescript.h", |
| 2338 "cocoa/applescript/metrics_applescript.mm", |
| 2339 "cocoa/applescript/tab_applescript.h", |
| 2340 "cocoa/applescript/tab_applescript.mm", |
| 2341 "cocoa/applescript/window_applescript.h", |
| 2342 "cocoa/applescript/window_applescript.mm", |
| 2343 "cocoa/apps/chrome_app_window_client_views_cocoa.mm", |
| 2344 "cocoa/apps/native_app_window_cocoa.h", |
| 2345 "cocoa/apps/native_app_window_cocoa.mm", |
| 2346 "cocoa/autofill/autofill_bubble_controller.h", |
| 2347 "cocoa/autofill/autofill_bubble_controller.mm", |
| 2348 "cocoa/autofill/autofill_layout.h", |
| 2349 "cocoa/autofill/autofill_pop_up_button.h", |
| 2350 "cocoa/autofill/autofill_pop_up_button.mm", |
| 2351 "cocoa/autofill/autofill_popup_base_view_cocoa.h", |
| 2352 "cocoa/autofill/autofill_popup_base_view_cocoa.mm", |
| 2353 "cocoa/autofill/autofill_popup_view_bridge.h", |
| 2354 "cocoa/autofill/autofill_popup_view_bridge.mm", |
| 2355 "cocoa/autofill/autofill_popup_view_cocoa.h", |
| 2356 "cocoa/autofill/autofill_popup_view_cocoa.mm", |
| 2357 "cocoa/autofill/autofill_textfield.h", |
| 2358 "cocoa/autofill/autofill_textfield.mm", |
| 2359 "cocoa/autofill/autofill_tooltip_controller.h", |
| 2360 "cocoa/autofill/autofill_tooltip_controller.mm", |
| 2361 "cocoa/autofill/card_unmask_prompt_view_bridge.h", |
| 2362 "cocoa/autofill/card_unmask_prompt_view_bridge.mm", |
| 2363 "cocoa/autofill/card_unmask_prompt_view_views.mm", |
| 2364 "cocoa/autofill/down_arrow_popup_menu_cell.h", |
| 2365 "cocoa/autofill/down_arrow_popup_menu_cell.mm", |
| 2366 "cocoa/autofill/layout_view.h", |
| 2367 "cocoa/autofill/layout_view.mm", |
| 2368 "cocoa/autofill/password_generation_popup_view_bridge.h", |
| 2369 "cocoa/autofill/password_generation_popup_view_bridge.mm", |
| 2370 "cocoa/autofill/password_generation_popup_view_cocoa.h", |
| 2371 "cocoa/autofill/password_generation_popup_view_cocoa.mm", |
| 2372 "cocoa/autofill/save_card_bubble_view_bridge.h", |
| 2373 "cocoa/autofill/save_card_bubble_view_bridge.mm", |
| 2374 "cocoa/autofill/simple_grid_layout.h", |
| 2375 "cocoa/autofill/simple_grid_layout.mm", |
| 2376 "cocoa/background_gradient_view.h", |
| 2377 "cocoa/background_gradient_view.mm", |
| 2378 "cocoa/base_bubble_controller.h", |
| 2379 "cocoa/base_bubble_controller.mm", |
| 2380 "cocoa/bookmarks/bookmark_all_tabs_controller.h", |
| 2381 "cocoa/bookmarks/bookmark_all_tabs_controller.mm", |
| 2382 "cocoa/bookmarks/bookmark_bar_bridge.h", |
| 2383 "cocoa/bookmarks/bookmark_bar_bridge.mm", |
| 2384 "cocoa/bookmarks/bookmark_bar_constants.h", |
| 2385 "cocoa/bookmarks/bookmark_bar_controller.h", |
| 2386 "cocoa/bookmarks/bookmark_bar_controller.mm", |
| 2387 "cocoa/bookmarks/bookmark_bar_folder_button_cell.h", |
| 2388 "cocoa/bookmarks/bookmark_bar_folder_button_cell.mm", |
| 2389 "cocoa/bookmarks/bookmark_bar_folder_controller.h", |
| 2390 "cocoa/bookmarks/bookmark_bar_folder_controller.mm", |
| 2391 "cocoa/bookmarks/bookmark_bar_folder_hover_state.h", |
| 2392 "cocoa/bookmarks/bookmark_bar_folder_hover_state.mm", |
| 2393 "cocoa/bookmarks/bookmark_bar_folder_view.h", |
| 2394 "cocoa/bookmarks/bookmark_bar_folder_view.mm", |
| 2395 "cocoa/bookmarks/bookmark_bar_folder_window.h", |
| 2396 "cocoa/bookmarks/bookmark_bar_folder_window.mm", |
| 2397 "cocoa/bookmarks/bookmark_bar_state.h", |
| 2398 "cocoa/bookmarks/bookmark_bar_toolbar_view.h", |
| 2399 "cocoa/bookmarks/bookmark_bar_toolbar_view.mm", |
| 2400 "cocoa/bookmarks/bookmark_bar_view_cocoa.h", |
| 2401 "cocoa/bookmarks/bookmark_bar_view_cocoa.mm", |
| 2402 "cocoa/bookmarks/bookmark_bubble_controller.h", |
| 2403 "cocoa/bookmarks/bookmark_bubble_controller.mm", |
| 2404 "cocoa/bookmarks/bookmark_bubble_observer_cocoa.h", |
| 2405 "cocoa/bookmarks/bookmark_bubble_observer_cocoa.mm", |
| 2406 "cocoa/bookmarks/bookmark_button.h", |
| 2407 "cocoa/bookmarks/bookmark_button.mm", |
| 2408 "cocoa/bookmarks/bookmark_button_cell.h", |
| 2409 "cocoa/bookmarks/bookmark_button_cell.mm", |
| 2410 "cocoa/bookmarks/bookmark_context_menu_cocoa_controller.h", |
| 2411 "cocoa/bookmarks/bookmark_context_menu_cocoa_controller.mm", |
| 2412 "cocoa/bookmarks/bookmark_drag_drop_cocoa.mm", |
| 2413 "cocoa/bookmarks/bookmark_editor_base_controller.h", |
| 2414 "cocoa/bookmarks/bookmark_editor_base_controller.mm", |
| 2415 "cocoa/bookmarks/bookmark_editor_controller.h", |
| 2416 "cocoa/bookmarks/bookmark_editor_controller.mm", |
| 2417 "cocoa/bookmarks/bookmark_folder_target.h", |
| 2418 "cocoa/bookmarks/bookmark_folder_target.mm", |
| 2419 "cocoa/bookmarks/bookmark_model_observer_for_cocoa.h", |
| 2420 "cocoa/bookmarks/bookmark_model_observer_for_cocoa.mm", |
| 2421 "cocoa/bookmarks/bookmark_name_folder_controller.h", |
| 2422 "cocoa/bookmarks/bookmark_name_folder_controller.mm", |
| 2423 "cocoa/bookmarks/bookmark_tree_browser_cell.h", |
| 2424 "cocoa/bookmarks/bookmark_tree_browser_cell.mm", |
| 2425 "cocoa/browser/exclusive_access_controller_views.h", |
| 2426 "cocoa/browser/exclusive_access_controller_views.mm", |
| 2427 "cocoa/browser/zoom_bubble_controller.h", |
| 2428 "cocoa/browser/zoom_bubble_controller.mm", |
| 2429 "cocoa/browser_window_cocoa.h", |
| 2430 "cocoa/browser_window_cocoa.mm", |
| 2431 "cocoa/browser_window_controller.h", |
| 2432 "cocoa/browser_window_controller.mm", |
| 2433 "cocoa/browser_window_controller_private.h", |
| 2434 "cocoa/browser_window_controller_private.mm", |
| 2435 "cocoa/browser_window_factory_cocoa.mm", |
| 2436 "cocoa/browser_window_fullscreen_transition.h", |
| 2437 "cocoa/browser_window_fullscreen_transition.mm", |
| 2438 "cocoa/browser_window_layout.h", |
| 2439 "cocoa/browser_window_layout.mm", |
| 2440 "cocoa/browser_window_utils.h", |
| 2441 "cocoa/browser_window_utils.mm", |
| 2442 "cocoa/bubble_combobox.h", |
| 2443 "cocoa/bubble_combobox.mm", |
| 2444 "cocoa/bubble_sync_promo_controller.h", |
| 2445 "cocoa/bubble_sync_promo_controller.mm", |
| 2446 "cocoa/bubble_view.h", |
| 2447 "cocoa/bubble_view.mm", |
| 2448 "cocoa/certificate_viewer_mac_cocoa.h", |
| 2449 "cocoa/certificate_viewer_mac_cocoa.mm", |
| 2450 "cocoa/chooser_content_view_cocoa.h", |
| 2451 "cocoa/chooser_content_view_cocoa.mm", |
| 2452 "cocoa/chrome_browser_window.h", |
| 2453 "cocoa/chrome_browser_window.mm", |
| 2454 "cocoa/chrome_event_processing_window.h", |
| 2455 "cocoa/chrome_event_processing_window.mm", |
| 2456 "cocoa/clickhold_button_cell.h", |
| 2457 "cocoa/clickhold_button_cell.mm", |
| 2458 "cocoa/confirm_bubble_cocoa.h", |
| 2459 "cocoa/confirm_bubble_cocoa.mm", |
| 2460 "cocoa/confirm_bubble_controller.h", |
| 2461 "cocoa/confirm_bubble_controller.mm", |
| 2462 "cocoa/constrained_web_dialog_delegate_mac.mm", |
| 2463 "cocoa/constrained_window/constrained_window_alert.h", |
| 2464 "cocoa/constrained_window/constrained_window_alert.mm", |
| 2465 "cocoa/constrained_window/constrained_window_button.h", |
| 2466 "cocoa/constrained_window/constrained_window_button.mm", |
| 2467 "cocoa/constrained_window/constrained_window_control_utils.h", |
| 2468 "cocoa/constrained_window/constrained_window_control_utils.mm", |
| 2469 "cocoa/constrained_window/constrained_window_custom_sheet.h", |
| 2470 "cocoa/constrained_window/constrained_window_custom_sheet.mm", |
| 2471 "cocoa/constrained_window/constrained_window_custom_window.h", |
| 2472 "cocoa/constrained_window/constrained_window_custom_window.mm", |
| 2473 "cocoa/constrained_window/constrained_window_mac.h", |
| 2474 "cocoa/constrained_window/constrained_window_mac.mm", |
| 2475 "cocoa/constrained_window/constrained_window_sheet.h", |
| 2476 "cocoa/constrained_window/constrained_window_sheet_controller.h", |
| 2477 "cocoa/constrained_window/constrained_window_sheet_controller.mm", |
| 2478 "cocoa/constrained_window/constrained_window_sheet_info.h", |
| 2479 "cocoa/constrained_window/constrained_window_sheet_info.mm", |
| 2480 "cocoa/constrained_window/constrained_window_web_dialog_sheet.h", |
| 2481 "cocoa/constrained_window/constrained_window_web_dialog_sheet.mm", |
| 2482 "cocoa/content_settings/collected_cookies_mac.h", |
| 2483 "cocoa/content_settings/collected_cookies_mac.mm", |
| 2484 "cocoa/content_settings/content_setting_bubble_cocoa.h", |
| 2485 "cocoa/content_settings/content_setting_bubble_cocoa.mm", |
| 2486 "cocoa/content_settings/cookie_details.h", |
| 2487 "cocoa/content_settings/cookie_details.mm", |
| 2488 "cocoa/content_settings/cookie_details_view_controller.h", |
| 2489 "cocoa/content_settings/cookie_details_view_controller.mm", |
| 2490 "cocoa/content_settings/cookie_tree_node.h", |
| 2491 "cocoa/content_settings/cookie_tree_node.mm", |
| 2492 "cocoa/content_settings/cookies_tree_controller_bridge.h", |
| 2493 "cocoa/content_settings/cookies_tree_controller_bridge.mm", |
| 2494 "cocoa/create_application_shortcut_cocoa.mm", |
| 2495 "cocoa/create_native_web_modal_manager_cocoa.mm", |
| 2496 "cocoa/custom_frame_view.h", |
| 2497 "cocoa/custom_frame_view.mm", |
| 2498 "cocoa/dev_tools_controller.h", |
| 2499 "cocoa/dev_tools_controller.mm", |
| 2500 "cocoa/download/background_theme.h", |
| 2501 "cocoa/download/background_theme.mm", |
| 2502 "cocoa/download/download_danger_prompt_impl.cc", |
| 2503 "cocoa/download/download_danger_prompt_impl.h", |
| 2504 "cocoa/download/download_item_button.h", |
| 2505 "cocoa/download/download_item_button.mm", |
| 2506 "cocoa/download/download_item_cell.h", |
| 2507 "cocoa/download/download_item_cell.mm", |
| 2508 "cocoa/download/download_item_controller.h", |
| 2509 "cocoa/download/download_item_controller.mm", |
| 2510 "cocoa/download/download_item_mac.h", |
| 2511 "cocoa/download/download_item_mac.mm", |
| 2512 "cocoa/download/download_shelf_context_menu_controller.h", |
| 2513 "cocoa/download/download_shelf_context_menu_controller.mm", |
| 2514 "cocoa/download/download_shelf_controller.h", |
| 2515 "cocoa/download/download_shelf_controller.mm", |
| 2516 "cocoa/download/download_shelf_mac.h", |
| 2517 "cocoa/download/download_shelf_mac.mm", |
| 2518 "cocoa/download/download_shelf_view_cocoa.h", |
| 2519 "cocoa/download/download_shelf_view_cocoa.mm", |
| 2520 "cocoa/download/download_show_all_button.h", |
| 2521 "cocoa/download/download_show_all_button.mm", |
| 2522 "cocoa/download/download_show_all_cell.h", |
| 2523 "cocoa/download/download_show_all_cell.mm", |
| 2524 "cocoa/download/download_started_animation_mac.mm", |
| 2525 "cocoa/drag_util.h", |
| 2526 "cocoa/drag_util.mm", |
| 2527 "cocoa/draggable_button.h", |
| 2528 "cocoa/draggable_button.mm", |
| 2529 "cocoa/draggable_button_mixin.h", |
| 2530 "cocoa/draggable_button_mixin.mm", |
| 2531 "cocoa/extensions/browser_action_button.h", |
| 2532 "cocoa/extensions/browser_action_button.mm", |
| 2533 "cocoa/extensions/browser_actions_container_view.h", |
| 2534 "cocoa/extensions/browser_actions_container_view.mm", |
| 2535 "cocoa/extensions/browser_actions_controller.h", |
| 2536 "cocoa/extensions/browser_actions_controller.mm", |
| 2537 "cocoa/extensions/chooser_dialog_cocoa.h", |
| 2538 "cocoa/extensions/chooser_dialog_cocoa.mm", |
| 2539 "cocoa/extensions/chooser_dialog_cocoa_controller.h", |
| 2540 "cocoa/extensions/chooser_dialog_cocoa_controller.mm", |
| 2541 "cocoa/extensions/device_permissions_dialog_controller.h", |
| 2542 "cocoa/extensions/device_permissions_dialog_controller.mm", |
| 2543 "cocoa/extensions/device_permissions_view_controller.h", |
| 2544 "cocoa/extensions/device_permissions_view_controller.mm", |
| 2545 "cocoa/extensions/extension_action_platform_delegate_cocoa.h", |
| 2546 "cocoa/extensions/extension_action_platform_delegate_cocoa.mm", |
| 2547 "cocoa/extensions/extension_install_dialog_controller.h", |
| 2548 "cocoa/extensions/extension_install_dialog_controller.mm", |
| 2549 "cocoa/extensions/extension_install_view_controller.h", |
| 2550 "cocoa/extensions/extension_install_view_controller.mm", |
| 2551 "cocoa/extensions/extension_installed_bubble_controller.h", |
| 2552 "cocoa/extensions/extension_installed_bubble_controller.mm", |
| 2553 "cocoa/extensions/extension_keybinding_registry_cocoa.h", |
| 2554 "cocoa/extensions/extension_keybinding_registry_cocoa.mm", |
| 2555 "cocoa/extensions/extension_popup_controller.h", |
| 2556 "cocoa/extensions/extension_popup_controller.mm", |
| 2557 "cocoa/extensions/extension_uninstall_dialog_cocoa.mm", |
| 2558 "cocoa/extensions/extension_view_mac.h", |
| 2559 "cocoa/extensions/extension_view_mac.mm", |
| 2560 "cocoa/extensions/media_galleries_dialog_cocoa.h", |
| 2561 "cocoa/extensions/media_galleries_dialog_cocoa.mm", |
| 2562 "cocoa/extensions/media_gallery_list_entry_view.h", |
| 2563 "cocoa/extensions/media_gallery_list_entry_view.mm", |
| 2564 "cocoa/extensions/toolbar_actions_bar_bubble_mac.h", |
| 2565 "cocoa/extensions/toolbar_actions_bar_bubble_mac.mm", |
| 2566 "cocoa/extensions/windowed_install_dialog_controller.h", |
| 2567 "cocoa/extensions/windowed_install_dialog_controller.mm", |
| 2568 "cocoa/external_protocol_dialog.h", |
| 2569 "cocoa/external_protocol_dialog.mm", |
| 2570 "cocoa/fast_resize_view.h", |
| 2571 "cocoa/fast_resize_view.mm", |
| 2572 "cocoa/find_bar/find_bar_bridge.h", |
| 2573 "cocoa/find_bar/find_bar_bridge.mm", |
| 2574 "cocoa/find_bar/find_bar_cocoa_controller.h", |
| 2575 "cocoa/find_bar/find_bar_cocoa_controller.mm", |
| 2576 "cocoa/find_bar/find_bar_text_field.h", |
| 2577 "cocoa/find_bar/find_bar_text_field.mm", |
| 2578 "cocoa/find_bar/find_bar_text_field_cell.h", |
| 2579 "cocoa/find_bar/find_bar_text_field_cell.mm", |
| 2580 "cocoa/find_bar/find_bar_view_cocoa.h", |
| 2581 "cocoa/find_bar/find_bar_view_cocoa.mm", |
| 2582 "cocoa/first_run_bubble_controller.h", |
| 2583 "cocoa/first_run_bubble_controller.mm", |
| 2584 "cocoa/floating_bar_backing_view.h", |
| 2585 "cocoa/floating_bar_backing_view.mm", |
| 2586 "cocoa/framed_browser_window.h", |
| 2587 "cocoa/framed_browser_window.mm", |
| 2588 "cocoa/full_size_content_window.h", |
| 2589 "cocoa/full_size_content_window.mm", |
| 2590 "cocoa/fullscreen_low_power_coordinator.h", |
| 2591 "cocoa/fullscreen_low_power_coordinator.mm", |
| 2592 "cocoa/fullscreen_toolbar_controller.h", |
| 2593 "cocoa/fullscreen_toolbar_controller.mm", |
| 2594 "cocoa/fullscreen_window.h", |
| 2595 "cocoa/fullscreen_window.mm", |
| 2596 "cocoa/global_error_bubble_controller.h", |
| 2597 "cocoa/global_error_bubble_controller.mm", |
| 2598 "cocoa/gradient_button_cell.h", |
| 2599 "cocoa/gradient_button_cell.mm", |
| 2600 "cocoa/has_weak_browser_pointer.h", |
| 2601 "cocoa/hover_close_button.h", |
| 2602 "cocoa/hover_close_button.mm", |
| 2603 "cocoa/hung_renderer_controller.h", |
| 2604 "cocoa/hung_renderer_controller.mm", |
| 2605 "cocoa/image_button_cell.h", |
| 2606 "cocoa/image_button_cell.mm", |
| 2607 "cocoa/importer/import_lock_dialog_cocoa.mm", |
| 2608 "cocoa/info_bubble_view.h", |
| 2609 "cocoa/info_bubble_view.mm", |
| 2610 "cocoa/info_bubble_window.h", |
| 2611 "cocoa/info_bubble_window.mm", |
| 2612 "cocoa/infobars/after_translate_infobar_controller.h", |
| 2613 "cocoa/infobars/after_translate_infobar_controller.mm", |
| 2614 "cocoa/infobars/alternate_nav_infobar_controller.h", |
| 2615 "cocoa/infobars/alternate_nav_infobar_controller.mm", |
| 2616 "cocoa/infobars/before_translate_infobar_controller.h", |
| 2617 "cocoa/infobars/before_translate_infobar_controller.mm", |
| 2618 "cocoa/infobars/confirm_infobar_controller.h", |
| 2619 "cocoa/infobars/confirm_infobar_controller.mm", |
| 2620 "cocoa/infobars/infobar_cocoa.h", |
| 2621 "cocoa/infobars/infobar_cocoa.mm", |
| 2622 "cocoa/infobars/infobar_container_cocoa.h", |
| 2623 "cocoa/infobars/infobar_container_cocoa.mm", |
| 2624 "cocoa/infobars/infobar_container_controller.h", |
| 2625 "cocoa/infobars/infobar_container_controller.mm", |
| 2626 "cocoa/infobars/infobar_controller.h", |
| 2627 "cocoa/infobars/infobar_controller.mm", |
| 2628 "cocoa/infobars/infobar_gradient_view.h", |
| 2629 "cocoa/infobars/infobar_gradient_view.mm", |
| 2630 "cocoa/infobars/infobar_utilities.h", |
| 2631 "cocoa/infobars/infobar_utilities.mm", |
| 2632 "cocoa/infobars/translate_infobar_base.h", |
| 2633 "cocoa/infobars/translate_infobar_base.mm", |
| 2634 "cocoa/infobars/translate_message_infobar_controller.h", |
| 2635 "cocoa/infobars/translate_message_infobar_controller.mm", |
| 2636 "cocoa/javascript_app_modal_dialog_cocoa.h", |
| 2637 "cocoa/javascript_app_modal_dialog_cocoa.mm", |
| 2638 "cocoa/location_bar/autocomplete_text_field.h", |
| 2639 "cocoa/location_bar/autocomplete_text_field.mm", |
| 2640 "cocoa/location_bar/autocomplete_text_field_cell.h", |
| 2641 "cocoa/location_bar/autocomplete_text_field_cell.mm", |
| 2642 "cocoa/location_bar/autocomplete_text_field_editor.h", |
| 2643 "cocoa/location_bar/autocomplete_text_field_editor.mm", |
| 2644 "cocoa/location_bar/bubble_decoration.h", |
| 2645 "cocoa/location_bar/bubble_decoration.mm", |
| 2646 "cocoa/location_bar/content_setting_decoration.h", |
| 2647 "cocoa/location_bar/content_setting_decoration.mm", |
| 2648 "cocoa/location_bar/ev_bubble_decoration.h", |
| 2649 "cocoa/location_bar/ev_bubble_decoration.mm", |
| 2650 "cocoa/location_bar/image_decoration.h", |
| 2651 "cocoa/location_bar/image_decoration.mm", |
| 2652 "cocoa/location_bar/keyword_hint_decoration.h", |
| 2653 "cocoa/location_bar/keyword_hint_decoration.mm", |
| 2654 "cocoa/location_bar/location_bar_decoration.h", |
| 2655 "cocoa/location_bar/location_bar_decoration.mm", |
| 2656 "cocoa/location_bar/location_bar_view_mac.h", |
| 2657 "cocoa/location_bar/location_bar_view_mac.mm", |
| 2658 "cocoa/location_bar/location_icon_decoration.h", |
| 2659 "cocoa/location_bar/location_icon_decoration.mm", |
| 2660 "cocoa/location_bar/manage_passwords_decoration.h", |
| 2661 "cocoa/location_bar/manage_passwords_decoration.mm", |
| 2662 "cocoa/location_bar/page_action_decoration.h", |
| 2663 "cocoa/location_bar/page_action_decoration.mm", |
| 2664 "cocoa/location_bar/save_credit_card_decoration.h", |
| 2665 "cocoa/location_bar/save_credit_card_decoration.mm", |
| 2666 "cocoa/location_bar/selected_keyword_decoration.h", |
| 2667 "cocoa/location_bar/selected_keyword_decoration.mm", |
| 2668 "cocoa/location_bar/star_decoration.h", |
| 2669 "cocoa/location_bar/star_decoration.mm", |
| 2670 "cocoa/location_bar/translate_decoration.h", |
| 2671 "cocoa/location_bar/translate_decoration.mm", |
| 2672 "cocoa/location_bar/zoom_decoration.h", |
| 2673 "cocoa/location_bar/zoom_decoration.mm", |
| 2674 "cocoa/login_handler_cocoa.h", |
| 2675 "cocoa/login_handler_cocoa.mm", |
| 2676 "cocoa/main_menu_item.h", |
| 2677 "cocoa/menu_button.h", |
| 2678 "cocoa/menu_button.mm", |
| 2679 "cocoa/multi_key_equivalent_button.h", |
| 2680 "cocoa/multi_key_equivalent_button.mm", |
| 2681 "cocoa/new_tab_button.h", |
| 2682 "cocoa/new_tab_button.mm", |
| 2683 "cocoa/omnibox/omnibox_popup_cell.h", |
| 2684 "cocoa/omnibox/omnibox_popup_cell.mm", |
| 2685 "cocoa/omnibox/omnibox_popup_matrix.h", |
| 2686 "cocoa/omnibox/omnibox_popup_matrix.mm", |
| 2687 "cocoa/omnibox/omnibox_popup_separator_view.h", |
| 2688 "cocoa/omnibox/omnibox_popup_separator_view.mm", |
| 2689 "cocoa/omnibox/omnibox_popup_view_mac.h", |
| 2690 "cocoa/omnibox/omnibox_popup_view_mac.mm", |
| 2691 "cocoa/omnibox/omnibox_view_mac.h", |
| 2692 "cocoa/omnibox/omnibox_view_mac.mm", |
| 2693 "cocoa/one_click_signin_dialog_controller.h", |
| 2694 "cocoa/one_click_signin_dialog_controller.mm", |
| 2695 "cocoa/one_click_signin_view_controller.h", |
| 2696 "cocoa/one_click_signin_view_controller.mm", |
| 2697 "cocoa/passwords/account_avatar_fetcher_manager.h", |
| 2698 "cocoa/passwords/account_avatar_fetcher_manager.mm", |
| 2699 "cocoa/passwords/account_chooser_view_controller.h", |
| 2700 "cocoa/passwords/account_chooser_view_controller.mm", |
| 2701 "cocoa/passwords/auto_signin_view_controller.h", |
| 2702 "cocoa/passwords/auto_signin_view_controller.mm", |
| 2703 "cocoa/passwords/autosignin_prompt_view_controller.h", |
| 2704 "cocoa/passwords/autosignin_prompt_view_controller.mm", |
| 2705 "cocoa/passwords/base_passwords_content_view_controller.h", |
| 2706 "cocoa/passwords/base_passwords_content_view_controller.mm", |
| 2707 "cocoa/passwords/confirmation_password_saved_view_controller.h", |
| 2708 "cocoa/passwords/confirmation_password_saved_view_controller.mm", |
| 2709 "cocoa/passwords/credential_item_button.h", |
| 2710 "cocoa/passwords/credential_item_button.mm", |
| 2711 "cocoa/passwords/credentials_selection_view.h", |
| 2712 "cocoa/passwords/credentials_selection_view.mm", |
| 2713 "cocoa/passwords/manage_passwords_view_controller.h", |
| 2714 "cocoa/passwords/manage_passwords_view_controller.mm", |
| 2715 "cocoa/passwords/password_item_views.h", |
| 2716 "cocoa/passwords/password_prompt_view_bridge.h", |
| 2717 "cocoa/passwords/password_prompt_view_bridge.mm", |
| 2718 "cocoa/passwords/passwords_bubble_cocoa.h", |
| 2719 "cocoa/passwords/passwords_bubble_cocoa.mm", |
| 2720 "cocoa/passwords/passwords_bubble_controller.h", |
| 2721 "cocoa/passwords/passwords_bubble_controller.mm", |
| 2722 "cocoa/passwords/passwords_bubble_utils.h", |
| 2723 "cocoa/passwords/passwords_bubble_utils.mm", |
| 2724 "cocoa/passwords/passwords_list_view_controller.h", |
| 2725 "cocoa/passwords/passwords_list_view_controller.mm", |
| 2726 "cocoa/passwords/pending_password_view_controller.h", |
| 2727 "cocoa/passwords/pending_password_view_controller.mm", |
| 2728 "cocoa/passwords/save_pending_password_view_controller.h", |
| 2729 "cocoa/passwords/save_pending_password_view_controller.mm", |
| 2730 "cocoa/passwords/signin_promo_view_controller.h", |
| 2731 "cocoa/passwords/signin_promo_view_controller.mm", |
| 2732 "cocoa/passwords/update_pending_password_view_controller.h", |
| 2733 "cocoa/passwords/update_pending_password_view_controller.mm", |
| 2734 "cocoa/profiles/avatar_base_controller.h", |
| 2735 "cocoa/profiles/avatar_base_controller.mm", |
| 2736 "cocoa/profiles/avatar_button.h", |
| 2737 "cocoa/profiles/avatar_button.mm", |
| 2738 "cocoa/profiles/avatar_button_controller.h", |
| 2739 "cocoa/profiles/avatar_button_controller.mm", |
| 2740 "cocoa/profiles/avatar_icon_controller.h", |
| 2741 "cocoa/profiles/avatar_icon_controller.mm", |
| 2742 "cocoa/profiles/avatar_menu_bubble_controller.h", |
| 2743 "cocoa/profiles/avatar_menu_bubble_controller.mm", |
| 2744 "cocoa/profiles/profile_chooser_controller.h", |
| 2745 "cocoa/profiles/profile_chooser_controller.mm", |
| 2746 "cocoa/profiles/profile_signin_confirmation_dialog_cocoa.h", |
| 2747 "cocoa/profiles/profile_signin_confirmation_dialog_cocoa.mm", |
| 2748 "cocoa/profiles/profile_signin_confirmation_view_controller.h", |
| 2749 "cocoa/profiles/profile_signin_confirmation_view_controller.mm", |
| 2750 "cocoa/profiles/signin_view_controller_delegate_mac.h", |
| 2751 "cocoa/profiles/signin_view_controller_delegate_mac.mm", |
| 2752 "cocoa/profiles/user_manager_mac.h", |
| 2753 "cocoa/profiles/user_manager_mac.mm", |
| 2754 "cocoa/rect_path_utils.h", |
| 2755 "cocoa/rect_path_utils.mm", |
| 2756 "cocoa/restart_browser.h", |
| 2757 "cocoa/restart_browser.mm", |
| 2758 "cocoa/screen_capture_notification_ui_cocoa.h", |
| 2759 "cocoa/screen_capture_notification_ui_cocoa.mm", |
| 2760 "cocoa/session_crashed_bubble.mm", |
| 2761 "cocoa/simple_message_box_mac.mm", |
| 2762 "cocoa/single_web_contents_dialog_manager_cocoa.h", |
| 2763 "cocoa/single_web_contents_dialog_manager_cocoa.mm", |
| 2764 "cocoa/spinner_view.h", |
| 2765 "cocoa/spinner_view.mm", |
| 2766 "cocoa/sprite_view.h", |
| 2767 "cocoa/sprite_view.mm", |
| 2768 "cocoa/ssl_client_certificate_selector_cocoa.h", |
| 2769 "cocoa/ssl_client_certificate_selector_cocoa.mm", |
| 2770 "cocoa/status_bubble_mac.h", |
| 2771 "cocoa/status_bubble_mac.mm", |
| 2772 "cocoa/styled_text_field.h", |
| 2773 "cocoa/styled_text_field.mm", |
| 2774 "cocoa/styled_text_field_cell.h", |
| 2775 "cocoa/styled_text_field_cell.mm", |
| 2776 "cocoa/tab_contents/favicon_util_mac.h", |
| 2777 "cocoa/tab_contents/favicon_util_mac.mm", |
| 2778 "cocoa/tab_contents/overlayable_contents_controller.h", |
| 2779 "cocoa/tab_contents/overlayable_contents_controller.mm", |
| 2780 "cocoa/tab_contents/tab_contents_controller.h", |
| 2781 "cocoa/tab_contents/tab_contents_controller.mm", |
| 2782 "cocoa/tab_dialogs_cocoa.h", |
| 2783 "cocoa/tab_dialogs_cocoa.mm", |
| 2784 "cocoa/tab_modal_confirm_dialog_mac.h", |
| 2785 "cocoa/tab_modal_confirm_dialog_mac.mm", |
| 2786 "cocoa/tabs/alert_indicator_button_cocoa.h", |
| 2787 "cocoa/tabs/alert_indicator_button_cocoa.mm", |
| 2788 "cocoa/tabs/tab_controller.h", |
| 2789 "cocoa/tabs/tab_controller.mm", |
| 2790 "cocoa/tabs/tab_strip_background_view.h", |
| 2791 "cocoa/tabs/tab_strip_background_view.mm", |
| 2792 "cocoa/tabs/tab_strip_controller.h", |
| 2793 "cocoa/tabs/tab_strip_controller.mm", |
| 2794 "cocoa/tabs/tab_strip_drag_controller.h", |
| 2795 "cocoa/tabs/tab_strip_drag_controller.mm", |
| 2796 "cocoa/tabs/tab_strip_model_observer_bridge.h", |
| 2797 "cocoa/tabs/tab_strip_model_observer_bridge.mm", |
| 2798 "cocoa/tabs/tab_strip_view.h", |
| 2799 "cocoa/tabs/tab_strip_view.mm", |
| 2800 "cocoa/tabs/tab_view.h", |
| 2801 "cocoa/tabs/tab_view.mm", |
| 2802 "cocoa/tabs/tab_window_controller.h", |
| 2803 "cocoa/tabs/tab_window_controller.mm", |
| 2804 "cocoa/task_manager_mac.h", |
| 2805 "cocoa/task_manager_mac.mm", |
| 2806 "cocoa/themed_window.h", |
| 2807 "cocoa/themed_window.mm", |
| 2808 "cocoa/toolbar/app_toolbar_button.h", |
| 2809 "cocoa/toolbar/app_toolbar_button.mm", |
| 2810 "cocoa/toolbar/app_toolbar_button_cell.h", |
| 2811 "cocoa/toolbar/app_toolbar_button_cell.mm", |
| 2812 "cocoa/toolbar/back_forward_menu_controller.h", |
| 2813 "cocoa/toolbar/back_forward_menu_controller.mm", |
| 2814 "cocoa/toolbar/media_router_action_platform_delegate_cocoa.h", |
| 2815 "cocoa/toolbar/media_router_action_platform_delegate_cocoa.mm", |
| 2816 "cocoa/toolbar/reload_button_cocoa.h", |
| 2817 "cocoa/toolbar/reload_button_cocoa.mm", |
| 2818 "cocoa/toolbar/toolbar_button_cocoa.h", |
| 2819 "cocoa/toolbar/toolbar_button_cocoa.mm", |
| 2820 "cocoa/toolbar/toolbar_controller.h", |
| 2821 "cocoa/toolbar/toolbar_controller.mm", |
| 2822 "cocoa/toolbar/toolbar_view_cocoa.h", |
| 2823 "cocoa/toolbar/toolbar_view_cocoa.mm", |
| 2824 "cocoa/translate/translate_bubble_controller.h", |
| 2825 "cocoa/translate/translate_bubble_controller.mm", |
| 2826 "cocoa/url_drop_target.h", |
| 2827 "cocoa/url_drop_target.mm", |
| 2828 "cocoa/validation_message_bubble_cocoa.h", |
| 2829 "cocoa/validation_message_bubble_cocoa.mm", |
| 2830 "cocoa/validation_message_bubble_controller.h", |
| 2831 "cocoa/vertical_gradient_view.h", |
| 2832 "cocoa/vertical_gradient_view.mm", |
| 2833 "cocoa/view_id_util.h", |
| 2834 "cocoa/view_id_util.mm", |
| 2835 "cocoa/view_resizer.h", |
| 2836 "cocoa/web_contents_modal_dialog_manager_views_mac.h", |
| 2837 "cocoa/web_contents_modal_dialog_manager_views_mac.mm", |
| 2838 "cocoa/website_settings/chooser_bubble_ui_cocoa.h", |
| 2839 "cocoa/website_settings/chooser_bubble_ui_cocoa.mm", |
| 2840 "cocoa/website_settings/permission_bubble_cocoa.h", |
| 2841 "cocoa/website_settings/permission_bubble_cocoa.mm", |
| 2842 "cocoa/website_settings/permission_bubble_controller.h", |
| 2843 "cocoa/website_settings/permission_bubble_controller.mm", |
| 2844 "cocoa/website_settings/permission_prompt_impl_views_mac.mm", |
| 2845 "cocoa/website_settings/permission_selector_button.h", |
| 2846 "cocoa/website_settings/permission_selector_button.mm", |
| 2847 "cocoa/website_settings/split_block_button.h", |
| 2848 "cocoa/website_settings/split_block_button.mm", |
| 2849 "cocoa/website_settings/website_settings_bubble_controller.h", |
| 2850 "cocoa/website_settings/website_settings_bubble_controller.mm", |
| 2851 "cocoa/website_settings/website_settings_utils_cocoa.h", |
| 2852 "cocoa/website_settings/website_settings_utils_cocoa.mm", |
| 2853 "cocoa/window_size_autosaver.h", |
| 2854 "cocoa/window_size_autosaver.mm", |
| 2855 |
| 2856 # TODO(estade): this class should be deleted in favor of a combobox mode
l. |
| 2857 # See crbug.com/590850 |
| 2858 "content_settings/content_setting_media_menu_model.cc", |
| 2859 "content_settings/content_setting_media_menu_model.h", |
| 2860 "proximity_auth/proximity_auth_error_bubble_stub.cc", |
| 2861 ] |
| 497 } | 2862 } |
| 498 include_dirs = [ "$target_gen_dir" ] | 2863 include_dirs = [ "$target_gen_dir" ] |
| 499 libs += [ | 2864 libs += [ |
| 500 "Carbon.framework", | 2865 "Carbon.framework", |
| 501 "Quartz.framework", | 2866 "Quartz.framework", |
| 502 ] | 2867 ] |
| 503 } else { # non-Mac. | 2868 } else { # non-Mac. |
| 504 sources += rebase_path(gypi_values.chrome_browser_ui_non_mac_sources, | 2869 sources += [ "web_contents_sizer.cc" ] |
| 505 ".", | |
| 506 "//chrome") | |
| 507 } | 2870 } |
| 508 | 2871 |
| 509 if (is_win) { | 2872 if (is_win) { |
| 510 sources += | 2873 sources += [ |
| 511 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") | 2874 "input_method/input_method_engine.cc", |
| 2875 "input_method/input_method_engine.h", |
| 2876 "input_method/input_method_engine_base.cc", |
| 2877 "input_method/input_method_engine_base.h", |
| 2878 "network_profile_bubble.cc", |
| 2879 "network_profile_bubble.h", |
| 2880 "views/color_chooser_dialog.cc", |
| 2881 "views/color_chooser_dialog.h", |
| 2882 "views/critical_notification_bubble_view.cc", |
| 2883 "views/critical_notification_bubble_view.h", |
| 2884 "views/frame/browser_desktop_window_tree_host.h", |
| 2885 "views/frame/browser_desktop_window_tree_host_win.cc", |
| 2886 "views/frame/browser_desktop_window_tree_host_win.h", |
| 2887 "views/frame/glass_browser_frame_view.cc", |
| 2888 "views/frame/glass_browser_frame_view.h", |
| 2889 "views/frame/native_browser_frame_factory_aurawin.cc", |
| 2890 "views/network_profile_bubble_view.cc", |
| 2891 "views/uninstall_view.cc", |
| 2892 "views/uninstall_view.h", |
| 2893 "webui/cast/cast_ui.cc", |
| 2894 "webui/cast/cast_ui.h", |
| 2895 "webui/conflicts_ui.cc", |
| 2896 "webui/conflicts_ui.h", |
| 2897 ] |
| 512 public_deps += [ | 2898 public_deps += [ |
| 513 "//ui/views", | 2899 "//ui/views", |
| 514 "//ui/views/controls/webview", | 2900 "//ui/views/controls/webview", |
| 515 ] | 2901 ] |
| 516 deps += [ | 2902 deps += [ |
| 517 "//components/search_engines", | 2903 "//components/search_engines", |
| 518 "//google_update", | 2904 "//google_update", |
| 519 "//third_party/iaccessible2", | 2905 "//third_party/iaccessible2", |
| 520 "//third_party/isimpledom", | 2906 "//third_party/isimpledom", |
| 521 "//third_party/wtl", | 2907 "//third_party/wtl", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 532 } | 2918 } |
| 533 } else { # 'OS!="win" | 2919 } else { # 'OS!="win" |
| 534 if (toolkit_views) { | 2920 if (toolkit_views) { |
| 535 public_deps += [ | 2921 public_deps += [ |
| 536 "//ui/views", | 2922 "//ui/views", |
| 537 "//ui/views/controls/webview", | 2923 "//ui/views/controls/webview", |
| 538 ] | 2924 ] |
| 539 } | 2925 } |
| 540 } | 2926 } |
| 541 if (is_desktop_linux) { | 2927 if (is_desktop_linux) { |
| 542 sources += rebase_path(gypi_values.chrome_browser_ui_desktop_linux_sources, | 2928 sources += [ |
| 543 ".", | 2929 "input_method/input_method_engine.cc", |
| 544 "//chrome") | 2930 "input_method/input_method_engine.h", |
| 2931 "input_method/input_method_engine_base.cc", |
| 2932 "input_method/input_method_engine_base.h", |
| 2933 "views/apps/chrome_app_window_client_views_linux.cc", |
| 2934 "views/first_run_dialog.cc", |
| 2935 "views/first_run_dialog.h", |
| 2936 "views/frame/browser_desktop_window_tree_host.h", |
| 2937 "views/frame/browser_desktop_window_tree_host_x11.cc", |
| 2938 "views/frame/browser_desktop_window_tree_host_x11.h", |
| 2939 "views/frame/desktop_browser_frame_auralinux.cc", |
| 2940 "views/frame/desktop_browser_frame_auralinux.h", |
| 2941 "views/frame/global_menu_bar_registrar_x11.cc", |
| 2942 "views/frame/global_menu_bar_registrar_x11.h", |
| 2943 "views/frame/global_menu_bar_x11.cc", |
| 2944 "views/frame/global_menu_bar_x11.h", |
| 2945 "views/frame/native_browser_frame_factory_auralinux.cc", |
| 2946 "views/javascript_app_modal_dialog_views_x11.cc", |
| 2947 "views/javascript_app_modal_dialog_views_x11.h", |
| 2948 "views/status_icons/status_icon_linux_wrapper.cc", |
| 2949 "views/status_icons/status_icon_linux_wrapper.h", |
| 2950 "webui/help/version_updater_basic.cc", |
| 2951 "webui/help/version_updater_basic.h", |
| 2952 ] |
| 545 deps += [ | 2953 deps += [ |
| 546 "//ui/base/ime", | 2954 "//ui/base/ime", |
| 547 "//ui/events:dom_keycode_converter", | 2955 "//ui/events:dom_keycode_converter", |
| 548 ] | 2956 ] |
| 549 } | 2957 } |
| 550 if (is_linux) { # Both desktop Linux and ChromeOS. | 2958 if (is_linux) { # Both desktop Linux and ChromeOS. |
| 551 sources += rebase_path(gypi_values.chrome_browser_ui_linux_sources, | 2959 sources += [ |
| 552 ".", | 2960 "certificate_dialogs.cc", |
| 553 "//chrome") | 2961 "certificate_dialogs.h", |
| 2962 "webui/certificate_viewer_ui.cc", |
| 2963 "webui/certificate_viewer_ui.h", |
| 2964 "webui/certificate_viewer_webui.cc", |
| 2965 "webui/certificate_viewer_webui.h", |
| 2966 ] |
| 554 if (use_aura) { | 2967 if (use_aura) { |
| 555 deps += [ "//build/linux:fontconfig" ] | 2968 deps += [ "//build/linux:fontconfig" ] |
| 556 if (use_dbus) { | 2969 if (use_dbus) { |
| 557 deps += [ "//dbus" ] | 2970 deps += [ "//dbus" ] |
| 558 } | 2971 } |
| 559 } | 2972 } |
| 560 if (use_x11) { | 2973 if (use_x11) { |
| 561 sources += rebase_path(gypi_values.chrome_browser_ui_x11_sources, | 2974 sources += [ |
| 562 ".", | 2975 "views/javascript_app_modal_event_blocker_x11.cc", |
| 563 "//chrome") | 2976 "views/javascript_app_modal_event_blocker_x11.h", |
| 2977 "views/tabs/window_finder_x11.cc", |
| 2978 ] |
| 564 configs += [ "//build/config/linux:x11" ] | 2979 configs += [ "//build/config/linux:x11" ] |
| 565 deps += [ | 2980 deps += [ |
| 566 "//ui/events/devices", | 2981 "//ui/events/devices", |
| 567 "//ui/events/devices/x11", | 2982 "//ui/events/devices/x11", |
| 568 ] | 2983 ] |
| 569 if (is_chromeos) { | 2984 if (is_chromeos) { |
| 570 sources -= [ "views/tabs/window_finder_x11.cc" ] | 2985 sources -= [ "views/tabs/window_finder_x11.cc" ] |
| 571 } | 2986 } |
| 572 } | 2987 } |
| 573 } | 2988 } |
| 574 | 2989 |
| 575 if (use_udev) { | 2990 if (use_udev) { |
| 576 deps += [ "//device/udev_linux" ] | 2991 deps += [ "//device/udev_linux" ] |
| 577 } | 2992 } |
| 578 | 2993 |
| 579 if (enable_app_list) { | 2994 if (enable_app_list) { |
| 580 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources, | 2995 sources += [ |
| 581 ".", | 2996 "app_list/app_context_menu.cc", |
| 582 "//chrome") | 2997 "app_list/app_context_menu.h", |
| 2998 "app_list/app_context_menu_delegate.h", |
| 2999 "app_list/app_list_controller_delegate.cc", |
| 3000 "app_list/app_list_controller_delegate.h", |
| 3001 "app_list/app_list_controller_delegate_impl.cc", |
| 3002 "app_list/app_list_controller_delegate_impl.h", |
| 3003 "app_list/app_list_model_builder.cc", |
| 3004 "app_list/app_list_model_builder.h", |
| 3005 "app_list/app_list_positioner.cc", |
| 3006 "app_list/app_list_positioner.h", |
| 3007 "app_list/app_list_prefs.cc", |
| 3008 "app_list/app_list_prefs.h", |
| 3009 "app_list/app_list_prefs_factory.cc", |
| 3010 "app_list/app_list_prefs_factory.h", |
| 3011 "app_list/app_list_presenter_delegate.h", |
| 3012 "app_list/app_list_service.cc", |
| 3013 "app_list/app_list_service.h", |
| 3014 "app_list/app_list_service_impl.cc", |
| 3015 "app_list/app_list_service_impl.h", |
| 3016 "app_list/app_list_syncable_service.cc", |
| 3017 "app_list/app_list_syncable_service.h", |
| 3018 "app_list/app_list_syncable_service_factory.cc", |
| 3019 "app_list/app_list_syncable_service_factory.h", |
| 3020 "app_list/app_list_view_delegate.cc", |
| 3021 "app_list/app_list_view_delegate.h", |
| 3022 "app_list/chrome_app_list_item.cc", |
| 3023 "app_list/chrome_app_list_item.h", |
| 3024 "app_list/extension_app_context_menu.cc", |
| 3025 "app_list/extension_app_context_menu.h", |
| 3026 "app_list/extension_app_item.cc", |
| 3027 "app_list/extension_app_item.h", |
| 3028 "app_list/extension_app_model_builder.cc", |
| 3029 "app_list/extension_app_model_builder.h", |
| 3030 "app_list/extension_uninstaller.cc", |
| 3031 "app_list/extension_uninstaller.h", |
| 3032 "app_list/fast_show_pickler.cc", |
| 3033 "app_list/fast_show_pickler.h", |
| 3034 "app_list/google_now_extension.cc", |
| 3035 "app_list/google_now_extension.h", |
| 3036 "app_list/launcher_page_event_dispatcher.cc", |
| 3037 "app_list/launcher_page_event_dispatcher.h", |
| 3038 "app_list/model_pref_updater.cc", |
| 3039 "app_list/model_pref_updater.h", |
| 3040 "app_list/profile_loader.cc", |
| 3041 "app_list/profile_loader.h", |
| 3042 "app_list/profile_store.h", |
| 3043 "app_list/search/app_result.cc", |
| 3044 "app_list/search/app_result.h", |
| 3045 "app_list/search/app_search_provider.cc", |
| 3046 "app_list/search/app_search_provider.h", |
| 3047 "app_list/search/common/json_response_fetcher.cc", |
| 3048 "app_list/search/common/json_response_fetcher.h", |
| 3049 "app_list/search/common/url_icon_source.cc", |
| 3050 "app_list/search/common/url_icon_source.h", |
| 3051 "app_list/search/common/webservice_cache.cc", |
| 3052 "app_list/search/common/webservice_cache.h", |
| 3053 "app_list/search/common/webservice_cache_factory.cc", |
| 3054 "app_list/search/common/webservice_cache_factory.h", |
| 3055 "app_list/search/common/webservice_search_provider.cc", |
| 3056 "app_list/search/common/webservice_search_provider.h", |
| 3057 "app_list/search/extension_app_result.cc", |
| 3058 "app_list/search/extension_app_result.h", |
| 3059 "app_list/search/history_factory.cc", |
| 3060 "app_list/search/history_factory.h", |
| 3061 "app_list/search/omnibox_provider.cc", |
| 3062 "app_list/search/omnibox_provider.h", |
| 3063 "app_list/search/omnibox_result.cc", |
| 3064 "app_list/search/omnibox_result.h", |
| 3065 "app_list/search/search_controller_factory.cc", |
| 3066 "app_list/search/search_controller_factory.h", |
| 3067 "app_list/search/search_resource_manager.cc", |
| 3068 "app_list/search/search_resource_manager.h", |
| 3069 "app_list/search/search_util.cc", |
| 3070 "app_list/search/search_util.h", |
| 3071 "app_list/search/search_webstore_result.cc", |
| 3072 "app_list/search/search_webstore_result.h", |
| 3073 "app_list/search/suggestions/suggestions_search_provider.cc", |
| 3074 "app_list/search/suggestions/suggestions_search_provider.h", |
| 3075 "app_list/search/suggestions/url_suggestion_result.cc", |
| 3076 "app_list/search/suggestions/url_suggestion_result.h", |
| 3077 "app_list/search/webstore/webstore_installer.cc", |
| 3078 "app_list/search/webstore/webstore_installer.h", |
| 3079 "app_list/search/webstore/webstore_provider.cc", |
| 3080 "app_list/search/webstore/webstore_provider.h", |
| 3081 "app_list/search/webstore/webstore_result.cc", |
| 3082 "app_list/search/webstore/webstore_result.h", |
| 3083 "app_list/speech_auth_helper.cc", |
| 3084 "app_list/speech_auth_helper.h", |
| 3085 "app_list/speech_recognizer.cc", |
| 3086 "app_list/speech_recognizer.h", |
| 3087 "app_list/speech_recognizer_delegate.h", |
| 3088 "app_list/start_page_observer.h", |
| 3089 "app_list/start_page_service.cc", |
| 3090 "app_list/start_page_service.h", |
| 3091 "app_list/start_page_service_factory.cc", |
| 3092 "app_list/start_page_service_factory.h", |
| 3093 "webui/app_list/start_page_handler.cc", |
| 3094 "webui/app_list/start_page_handler.h", |
| 3095 "webui/app_list/start_page_ui.cc", |
| 3096 "webui/app_list/start_page_ui.h", |
| 3097 ] |
| 583 if (is_chromeos) { | 3098 if (is_chromeos) { |
| 584 sources += rebase_path(gypi_values.chrome_browser_ui_chromeos_arc_sources, | 3099 sources += [ |
| 585 ".", | 3100 "app_list/arc/arc_app_context_menu.cc", |
| 586 "//chrome") | 3101 "app_list/arc/arc_app_context_menu.h", |
| 3102 "app_list/arc/arc_app_icon.cc", |
| 3103 "app_list/arc/arc_app_icon.h", |
| 3104 "app_list/arc/arc_app_icon_loader.cc", |
| 3105 "app_list/arc/arc_app_icon_loader.h", |
| 3106 "app_list/arc/arc_app_item.cc", |
| 3107 "app_list/arc/arc_app_item.h", |
| 3108 "app_list/arc/arc_app_launcher.cc", |
| 3109 "app_list/arc/arc_app_launcher.h", |
| 3110 "app_list/arc/arc_app_list_prefs.cc", |
| 3111 "app_list/arc/arc_app_list_prefs.h", |
| 3112 "app_list/arc/arc_app_list_prefs_factory.cc", |
| 3113 "app_list/arc/arc_app_list_prefs_factory.h", |
| 3114 "app_list/arc/arc_app_model_builder.cc", |
| 3115 "app_list/arc/arc_app_model_builder.h", |
| 3116 "app_list/arc/arc_app_utils.cc", |
| 3117 "app_list/arc/arc_app_utils.h", |
| 3118 "app_list/arc/arc_default_app_list.cc", |
| 3119 "app_list/arc/arc_default_app_list.h", |
| 3120 "app_list/arc/arc_package_sync_data_type_controller.cc", |
| 3121 "app_list/arc/arc_package_sync_data_type_controller.h", |
| 3122 "app_list/arc/arc_package_syncable_service.cc", |
| 3123 "app_list/arc/arc_package_syncable_service.h", |
| 3124 "app_list/arc/arc_package_syncable_service_factory.cc", |
| 3125 "app_list/arc/arc_package_syncable_service_factory.h", |
| 3126 "app_list/search/arc_app_result.cc", |
| 3127 "app_list/search/arc_app_result.h", |
| 3128 "ash/launcher/arc_app_deferred_launcher_controller.cc", |
| 3129 "ash/launcher/arc_app_deferred_launcher_controller.h", |
| 3130 "ash/launcher/arc_app_deferred_launcher_item_controller.cc", |
| 3131 "ash/launcher/arc_app_deferred_launcher_item_controller.h", |
| 3132 "ash/launcher/arc_app_window_launcher_controller.cc", |
| 3133 "ash/launcher/arc_app_window_launcher_controller.h", |
| 3134 "ash/launcher/arc_app_window_launcher_item_controller.cc", |
| 3135 "ash/launcher/arc_app_window_launcher_item_controller.h", |
| 3136 "ash/launcher/arc_launcher_context_menu.cc", |
| 3137 "ash/launcher/arc_launcher_context_menu.h", |
| 3138 "ash/launcher/launcher_arc_app_updater.cc", |
| 3139 "ash/launcher/launcher_arc_app_updater.h", |
| 3140 ] |
| 587 } | 3141 } |
| 588 if (is_desktop_linux) { | 3142 if (is_desktop_linux) { |
| 589 sources += | 3143 sources += [ |
| 590 rebase_path(gypi_values.chrome_browser_ui_app_list_linux_sources, | 3144 "views/app_list/linux/app_list_linux.cc", |
| 591 ".", | 3145 "views/app_list/linux/app_list_linux.h", |
| 592 "//chrome") | 3146 "views/app_list/linux/app_list_service_linux.cc", |
| 3147 "views/app_list/linux/app_list_service_linux.h", |
| 3148 ] |
| 593 } | 3149 } |
| 594 if (!is_mac && !use_ash) { | 3150 if (!is_mac && !use_ash) { |
| 595 sources += | 3151 sources += [ |
| 596 rebase_path(gypi_values.chrome_browser_ui_app_list_views_sources, | 3152 "app_list/app_list_controller_delegate_views.cc", |
| 597 ".", | 3153 "app_list/app_list_controller_delegate_views.h", |
| 598 "//chrome") | 3154 "app_list/app_list_service_views.cc", |
| 3155 "app_list/app_list_service_views.h", |
| 3156 "app_list/app_list_shower_views.cc", |
| 3157 "app_list/app_list_shower_views.h", |
| 3158 ] |
| 599 } | 3159 } |
| 600 deps += [ "//ui/app_list" ] | 3160 deps += [ "//ui/app_list" ] |
| 601 } else { | 3161 } else { |
| 602 sources += rebase_path(gypi_values.chrome_browser_ui_non_app_list_sources, | 3162 sources += [ |
| 603 ".", | 3163 "app_list/app_list_service.h", |
| 604 "//chrome") | 3164 "app_list/app_list_service_disabled.cc", |
| 3165 "app_list/app_list_service_disabled_mac.h", |
| 3166 "app_list/app_list_service_disabled_mac.mm", |
| 3167 ] |
| 605 } | 3168 } |
| 606 if (!android_java_ui) { | 3169 if (!android_java_ui) { |
| 607 deps += [ | 3170 deps += [ |
| 608 "//third_party/libaddressinput", | 3171 "//third_party/libaddressinput", |
| 609 "//third_party/libaddressinput:strings", | 3172 "//third_party/libaddressinput:strings", |
| 610 ] | 3173 ] |
| 611 } | 3174 } |
| 612 if (enable_extensions) { | 3175 if (enable_extensions) { |
| 613 deps += [ | 3176 deps += [ |
| 614 "//chrome/browser/extensions", | 3177 "//chrome/browser/extensions", |
| 615 "//chrome/common/extensions/api", | 3178 "//chrome/common/extensions/api", |
| 616 "//chrome/common/extensions/api:api_registration", | 3179 "//chrome/common/extensions/api:api_registration", |
| 617 ] | 3180 ] |
| 618 allow_circular_includes_from += [ "//chrome/browser/extensions" ] | 3181 allow_circular_includes_from += [ "//chrome/browser/extensions" ] |
| 619 sources += rebase_path(gypi_values.chrome_browser_ui_extensions_sources, | 3182 sources += [ |
| 620 ".", | 3183 "extensions/accelerator_priority.cc", |
| 621 "//chrome") | 3184 "extensions/accelerator_priority.h", |
| 3185 "extensions/app_launch_params.cc", |
| 3186 "extensions/app_launch_params.h", |
| 3187 "extensions/application_launch.cc", |
| 3188 "extensions/application_launch.h", |
| 3189 "extensions/blocked_action_bubble_delegate.cc", |
| 3190 "extensions/blocked_action_bubble_delegate.h", |
| 3191 "extensions/extension_action_platform_delegate.h", |
| 3192 "extensions/extension_action_view_controller.cc", |
| 3193 "extensions/extension_action_view_controller.h", |
| 3194 "extensions/extension_enable_flow.cc", |
| 3195 "extensions/extension_enable_flow.h", |
| 3196 "extensions/extension_enable_flow_delegate.h", |
| 3197 "extensions/extension_install_ui_default.cc", |
| 3198 "extensions/extension_install_ui_default.h", |
| 3199 "extensions/extension_install_ui_factory.cc", |
| 3200 "extensions/extension_install_ui_factory.h", |
| 3201 "extensions/extension_installed_bubble.cc", |
| 3202 "extensions/extension_installed_bubble.h", |
| 3203 "extensions/extension_message_bubble_bridge.cc", |
| 3204 "extensions/extension_message_bubble_bridge.h", |
| 3205 "extensions/extension_message_bubble_factory.cc", |
| 3206 "extensions/extension_message_bubble_factory.h", |
| 3207 "extensions/hosted_app_browser_controller.cc", |
| 3208 "extensions/hosted_app_browser_controller.h", |
| 3209 "extensions/icon_with_badge_image_source.cc", |
| 3210 "extensions/icon_with_badge_image_source.h", |
| 3211 "extensions/settings_api_bubble_helpers.cc", |
| 3212 "extensions/settings_api_bubble_helpers.h", |
| 3213 "webui/extensions/chromeos/kiosk_apps_handler.cc", |
| 3214 "webui/extensions/chromeos/kiosk_apps_handler.h", |
| 3215 "webui/extensions/extension_basic_info.cc", |
| 3216 "webui/extensions/extension_basic_info.h", |
| 3217 "webui/extensions/extension_icon_source.cc", |
| 3218 "webui/extensions/extension_icon_source.h", |
| 3219 ] |
| 622 } | 3220 } |
| 623 if (enable_google_now && !is_android) { | 3221 if (enable_google_now && !is_android) { |
| 624 sources += rebase_path( | 3222 sources += [ |
| 625 gypi_values.chrome_browser_ui_google_now_non_android_sources, | 3223 # These are non-Android because Android excludes all of options. |
| 626 ".", | 3224 "webui/options/geolocation_options_handler.cc", |
| 627 "//chrome") | 3225 "webui/options/geolocation_options_handler.h", |
| 3226 ] |
| 628 } | 3227 } |
| 629 if (enable_media_router && !is_android) { | 3228 if (enable_media_router && !is_android) { |
| 630 sources += rebase_path(gypi_values.chrome_browser_ui_media_router_sources, | 3229 sources += [ |
| 631 ".", | 3230 "toolbar/media_router_action.cc", |
| 632 "//chrome") | 3231 "toolbar/media_router_action.h", |
| 3232 "toolbar/media_router_action_platform_delegate.h", |
| 3233 "toolbar/media_router_contextual_menu.cc", |
| 3234 "toolbar/media_router_contextual_menu.h", |
| 3235 "views/toolbar/media_router_action_platform_delegate_views.cc", |
| 3236 "views/toolbar/media_router_action_platform_delegate_views.h", |
| 3237 "webui/media_router/media_cast_mode.cc", |
| 3238 "webui/media_router/media_cast_mode.h", |
| 3239 "webui/media_router/media_router_dialog_controller_impl.cc", |
| 3240 "webui/media_router/media_router_dialog_controller_impl.h", |
| 3241 "webui/media_router/media_router_localized_strings_provider.cc", |
| 3242 "webui/media_router/media_router_localized_strings_provider.h", |
| 3243 "webui/media_router/media_router_resources_provider.cc", |
| 3244 "webui/media_router/media_router_resources_provider.h", |
| 3245 "webui/media_router/media_router_ui.cc", |
| 3246 "webui/media_router/media_router_ui.h", |
| 3247 "webui/media_router/media_router_webui_message_handler.cc", |
| 3248 "webui/media_router/media_router_webui_message_handler.h", |
| 3249 "webui/media_router/media_sink_with_cast_modes.cc", |
| 3250 "webui/media_router/media_sink_with_cast_modes.h", |
| 3251 "webui/media_router/query_result_manager.cc", |
| 3252 "webui/media_router/query_result_manager.h", |
| 3253 ] |
| 633 if (is_mac && !mac_views_browser) { | 3254 if (is_mac && !mac_views_browser) { |
| 634 sources -= [ | 3255 sources -= [ |
| 635 # This file is compiled on GYP but never referenced on Mac. Since it's | 3256 # This file is compiled on GYP but never referenced on Mac. Since it's |
| 636 # in a static library, it never gets pulled in and we never try to link | 3257 # in a static library, it never gets pulled in and we never try to link |
| 637 # it (it doesn't link). In GN, source sets force us to get this rule | 3258 # it (it doesn't link). In GN, source sets force us to get this rule |
| 638 # correct. | 3259 # correct. |
| 639 "views/toolbar/media_router_action_platform_delegate_views.cc", | 3260 "views/toolbar/media_router_action_platform_delegate_views.cc", |
| 640 "views/toolbar/media_router_action_platform_delegate_views.h", | 3261 "views/toolbar/media_router_action_platform_delegate_views.h", |
| 641 ] | 3262 ] |
| 642 } | 3263 } |
| 643 deps += [ | 3264 deps += [ |
| 644 "//chrome/browser/media/router", | 3265 "//chrome/browser/media/router", |
| 645 "//components/web_modal", | 3266 "//components/web_modal", |
| 646 ] | 3267 ] |
| 647 } | 3268 } |
| 648 if (enable_webrtc) { | 3269 if (enable_webrtc) { |
| 649 sources += rebase_path(gypi_values.chrome_browser_ui_webrtc_sources, | 3270 sources += [ |
| 650 ".", | 3271 "webui/media/webrtc_logs_ui.cc", |
| 651 "//chrome") | 3272 "webui/media/webrtc_logs_ui.h", |
| 3273 ] |
| 652 } | 3274 } |
| 653 if (enable_service_discovery) { | 3275 if (enable_service_discovery) { |
| 654 sources += | 3276 sources += [ |
| 655 rebase_path(gypi_values.chrome_browser_ui_service_discovery_sources, | 3277 "webui/local_discovery/local_discovery_ui.cc", |
| 656 ".", | 3278 "webui/local_discovery/local_discovery_ui.h", |
| 657 "//chrome") | 3279 "webui/local_discovery/local_discovery_ui_handler.cc", |
| 3280 "webui/local_discovery/local_discovery_ui_handler.h", |
| 3281 ] |
| 658 } | 3282 } |
| 659 } | 3283 } |
| 660 | 3284 |
| 661 if (is_mac) { | 3285 if (is_mac) { |
| 662 nib_gypi_values = exec_script("//build/gypi_to_gn.py", | 3286 nib_gypi_values = exec_script("//build/gypi_to_gn.py", |
| 663 [ rebase_path("../../chrome_nibs.gypi") ], | 3287 [ rebase_path("../../chrome_nibs.gypi") ], |
| 664 "scope", | 3288 "scope", |
| 665 [ "../../chrome_nibs.gypi" ]) | 3289 [ "../../chrome_nibs.gypi" ]) |
| 666 | 3290 |
| 667 action("generate_localizer") { | 3291 action("generate_localizer") { |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 "passwords/passwords_model_delegate_mock.cc", | 3378 "passwords/passwords_model_delegate_mock.cc", |
| 755 "passwords/passwords_model_delegate_mock.h", | 3379 "passwords/passwords_model_delegate_mock.h", |
| 756 ] | 3380 ] |
| 757 deps += [ "//chrome/test:test_support_ui" ] | 3381 deps += [ "//chrome/test:test_support_ui" ] |
| 758 } | 3382 } |
| 759 | 3383 |
| 760 if (enable_extensions) { | 3384 if (enable_extensions) { |
| 761 deps += [ "//extensions/browser" ] | 3385 deps += [ "//extensions/browser" ] |
| 762 } | 3386 } |
| 763 } | 3387 } |
| OLD | NEW |