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

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

Issue 2862653002: If force-sign-in policy is enabled, popup warning dialog before window closing if auth token becom… (Closed)
Patch Set: fixup Created 3 years, 7 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
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 1939 matching lines...) Expand 10 before | Expand all | Expand 10 after
1950 deps += [ "//ui/views/mus" ] 1950 deps += [ "//ui/views/mus" ]
1951 } 1951 }
1952 1952
1953 if (!is_chromeos) { 1953 if (!is_chromeos) {
1954 sources += [ 1954 sources += [
1955 "views/profiles/signin_view_controller_delegate_views.cc", 1955 "views/profiles/signin_view_controller_delegate_views.cc",
1956 "views/profiles/signin_view_controller_delegate_views.h", 1956 "views/profiles/signin_view_controller_delegate_views.h",
1957 ] 1957 ]
1958 } 1958 }
1959 } 1959 }
1960
1961 if (!is_chromeos) {
1962 sources += [
1963 "views/profiles/force_signout_dialog.cc",
1964 "views/profiles/force_signout_dialog.h",
1965 "views/profiles/force_signout_dialog_view.cc",
1966 "views/profiles/force_signout_dialog_view.h",
1967 ]
1968 }
1969
1960 if (use_ash) { 1970 if (use_ash) {
1961 sources += [ 1971 sources += [
1962 "views/frame/browser_frame_ash.cc", 1972 "views/frame/browser_frame_ash.cc",
1963 "views/frame/browser_frame_ash.h", 1973 "views/frame/browser_frame_ash.h",
1964 "views/frame/browser_header_painter_ash.cc", 1974 "views/frame/browser_header_painter_ash.cc",
1965 "views/frame/browser_header_painter_ash.h", 1975 "views/frame/browser_header_painter_ash.h",
1966 "views/frame/browser_non_client_frame_view_ash.cc", 1976 "views/frame/browser_non_client_frame_view_ash.cc",
1967 "views/frame/browser_non_client_frame_view_ash.h", 1977 "views/frame/browser_non_client_frame_view_ash.h",
1968 "views/frame/immersive_context_mus.cc", 1978 "views/frame/immersive_context_mus.cc",
1969 "views/frame/immersive_context_mus.h", 1979 "views/frame/immersive_context_mus.h",
(...skipping 1601 matching lines...) Expand 10 before | Expand all | Expand 10 after
3571 "test/test_confirm_bubble_model.cc", 3581 "test/test_confirm_bubble_model.cc",
3572 "test/test_confirm_bubble_model.h", 3582 "test/test_confirm_bubble_model.h",
3573 ] 3583 ]
3574 deps += [ "//chrome/test:test_support_ui" ] 3584 deps += [ "//chrome/test:test_support_ui" ]
3575 } 3585 }
3576 3586
3577 if (enable_extensions) { 3587 if (enable_extensions) {
3578 deps += [ "//extensions/browser" ] 3588 deps += [ "//extensions/browser" ]
3579 } 3589 }
3580 } 3590 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698