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

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

Issue 2904823002: Inactive toast ux changes (Closed)
Patch Set: move run_loop_ to a unique_ptr Created 3 years, 4 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 1890 matching lines...) Expand 10 before | Expand all | Expand 10 after
1901 1901
1902 if (use_aura) { 1902 if (use_aura) {
1903 deps += [ 1903 deps += [
1904 "//services/ui/public/cpp", 1904 "//services/ui/public/cpp",
1905 "//services/ui/public/interfaces", 1905 "//services/ui/public/interfaces",
1906 ] 1906 ]
1907 } 1907 }
1908 1908
1909 if (is_win) { 1909 if (is_win) {
1910 sources += [ 1910 sources += [
1911 "views/try_chrome_dialog_view.cc", 1911 "views/try_chrome_dialog.cc",
1912 "views/try_chrome_dialog_view.h", 1912 "views/try_chrome_dialog.h",
1913 ] 1913 ]
1914 } 1914 }
1915 1915
1916 if (!is_mac) { 1916 if (!is_mac) {
1917 sources += [ 1917 sources += [
1918 "views/create_application_shortcut_view.cc", 1918 "views/create_application_shortcut_view.cc",
1919 "views/create_application_shortcut_view.h", 1919 "views/create_application_shortcut_view.h",
1920 1920
1921 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window 1921 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window
1922 # apart from aura::Window, which is also not supported). 1922 # apart from aura::Window, which is also not supported).
(...skipping 1695 matching lines...) Expand 10 before | Expand all | Expand 10 after
3618 deps += [ 3618 deps += [
3619 "//chrome/test:test_support_ui", 3619 "//chrome/test:test_support_ui",
3620 "//components/zoom", 3620 "//components/zoom",
3621 ] 3621 ]
3622 } 3622 }
3623 3623
3624 if (enable_extensions) { 3624 if (enable_extensions) {
3625 deps += [ "//extensions/browser" ] 3625 deps += [ "//extensions/browser" ]
3626 } 3626 }
3627 } 3627 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698