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

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

Issue 2904823002: Inactive toast ux changes (Closed)
Patch Set: switch to vector icons. Simplify new button class as a function Created 3 years, 5 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 1950 matching lines...) Expand 10 before | Expand all | Expand 10 after
1961 1961
1962 if (use_aura) { 1962 if (use_aura) {
1963 deps += [ 1963 deps += [
1964 "//services/ui/public/cpp", 1964 "//services/ui/public/cpp",
1965 "//services/ui/public/interfaces", 1965 "//services/ui/public/interfaces",
1966 ] 1966 ]
1967 } 1967 }
1968 1968
1969 if (is_win) { 1969 if (is_win) {
1970 sources += [ 1970 sources += [
1971 "views/try_chrome_dialog_view.cc", 1971 "views/try_chrome_dialog.cc",
1972 "views/try_chrome_dialog_view.h", 1972 "views/try_chrome_dialog.h",
1973 ] 1973 ]
1974 } 1974 }
1975 1975
1976 if (!is_mac) { 1976 if (!is_mac) {
1977 sources += [ 1977 sources += [
1978 "views/create_application_shortcut_view.cc", 1978 "views/create_application_shortcut_view.cc",
1979 "views/create_application_shortcut_view.h", 1979 "views/create_application_shortcut_view.h",
1980 1980
1981 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window 1981 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window
1982 # apart from aura::Window, which is also not supported). 1982 # apart from aura::Window, which is also not supported).
(...skipping 1699 matching lines...) Expand 10 before | Expand all | Expand 10 after
3682 deps += [ 3682 deps += [
3683 "//chrome/test:test_support_ui", 3683 "//chrome/test:test_support_ui",
3684 "//components/zoom", 3684 "//components/zoom",
3685 ] 3685 ]
3686 } 3686 }
3687 3687
3688 if (enable_extensions) { 3688 if (enable_extensions) {
3689 deps += [ "//extensions/browser" ] 3689 deps += [ "//extensions/browser" ]
3690 } 3690 }
3691 } 3691 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698