Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(343)

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 2656213002: Makes SessionCrashedBubbleView work on chromeos (Closed)
Patch Set: consent works on chromeos Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/startup/session_crashed_infobar_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 "signin_view_controller_delegate.cc", 806 "signin_view_controller_delegate.cc",
807 "signin_view_controller_delegate.h", 807 "signin_view_controller_delegate.h",
808 "singleton_tabs.cc", 808 "singleton_tabs.cc",
809 "singleton_tabs.h", 809 "singleton_tabs.h",
810 "startup/bad_flags_prompt.cc", 810 "startup/bad_flags_prompt.cc",
811 "startup/bad_flags_prompt.h", 811 "startup/bad_flags_prompt.h",
812 "startup/google_api_keys_infobar_delegate.cc", 812 "startup/google_api_keys_infobar_delegate.cc",
813 "startup/google_api_keys_infobar_delegate.h", 813 "startup/google_api_keys_infobar_delegate.h",
814 "startup/obsolete_system_infobar_delegate.cc", 814 "startup/obsolete_system_infobar_delegate.cc",
815 "startup/obsolete_system_infobar_delegate.h", 815 "startup/obsolete_system_infobar_delegate.h",
816 "startup/session_crashed_infobar_delegate.cc",
817 "startup/session_crashed_infobar_delegate.h",
818 "startup/startup_browser_creator.cc", 816 "startup/startup_browser_creator.cc",
819 "startup/startup_browser_creator.h", 817 "startup/startup_browser_creator.h",
820 "startup/startup_browser_creator_impl.cc", 818 "startup/startup_browser_creator_impl.cc",
821 "startup/startup_browser_creator_impl.h", 819 "startup/startup_browser_creator_impl.h",
822 "startup/startup_features.cc", 820 "startup/startup_features.cc",
823 "startup/startup_features.h", 821 "startup/startup_features.h",
824 "startup/startup_tab.cc", 822 "startup/startup_tab.cc",
825 "startup/startup_tab.h", 823 "startup/startup_tab.h",
826 "startup/startup_tab_provider.cc", 824 "startup/startup_tab_provider.cc",
827 "startup/startup_tab_provider.h", 825 "startup/startup_tab_provider.h",
(...skipping 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after
2021 if (is_mac && !mac_views_browser) { 2019 if (is_mac && !mac_views_browser) {
2022 sources -= [ 2020 sources -= [
2023 # This is not explicitly excluded in GYP, but I think the static 2021 # This is not explicitly excluded in GYP, but I think the static
2024 # library linking rules means it's never referenced when compiling in 2022 # library linking rules means it's never referenced when compiling in
2025 # non-Views mode on Mac. It appears not to link in that case. 2023 # non-Views mode on Mac. It appears not to link in that case.
2026 "views/frame/avatar_button_manager.cc", 2024 "views/frame/avatar_button_manager.cc",
2027 "views/frame/avatar_button_manager.h", 2025 "views/frame/avatar_button_manager.h",
2028 "views/profiles/new_avatar_button.cc", 2026 "views/profiles/new_avatar_button.cc",
2029 "views/profiles/new_avatar_button.h", 2027 "views/profiles/new_avatar_button.h",
2030 ] 2028 ]
2029 sources += [
2030 "startup/session_crashed_infobar_delegate.cc",
2031 "startup/session_crashed_infobar_delegate.h",
2032 ]
2031 } 2033 }
2032 } 2034 }
2033 if (use_aura) { 2035 if (use_aura) {
2034 sources += [ 2036 sources += [
2035 "aura/accessibility/automation_manager_aura.cc", 2037 "aura/accessibility/automation_manager_aura.cc",
2036 "aura/accessibility/automation_manager_aura.h", 2038 "aura/accessibility/automation_manager_aura.h",
2037 "aura/accessibility/ax_root_obj_wrapper.cc", 2039 "aura/accessibility/ax_root_obj_wrapper.cc",
2038 "aura/accessibility/ax_root_obj_wrapper.h", 2040 "aura/accessibility/ax_root_obj_wrapper.h",
2039 "aura/accessibility/ax_tree_source_aura.cc", 2041 "aura/accessibility/ax_tree_source_aura.cc",
2040 "aura/accessibility/ax_tree_source_aura.h", 2042 "aura/accessibility/ax_tree_source_aura.h",
(...skipping 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after
3498 "test/test_confirm_bubble_model.cc", 3500 "test/test_confirm_bubble_model.cc",
3499 "test/test_confirm_bubble_model.h", 3501 "test/test_confirm_bubble_model.h",
3500 ] 3502 ]
3501 deps += [ "//chrome/test:test_support_ui" ] 3503 deps += [ "//chrome/test:test_support_ui" ]
3502 } 3504 }
3503 3505
3504 if (enable_extensions) { 3506 if (enable_extensions) {
3505 deps += [ "//extensions/browser" ] 3507 deps += [ "//extensions/browser" ]
3506 } 3508 }
3507 } 3509 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/startup/session_crashed_infobar_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698