| 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/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 1961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1972 | 1972 |
| 1973 if (use_aura) { | 1973 if (use_aura) { |
| 1974 deps += [ | 1974 deps += [ |
| 1975 "//services/ui/public/cpp", | 1975 "//services/ui/public/cpp", |
| 1976 "//services/ui/public/interfaces", | 1976 "//services/ui/public/interfaces", |
| 1977 ] | 1977 ] |
| 1978 } | 1978 } |
| 1979 | 1979 |
| 1980 if (is_win) { | 1980 if (is_win) { |
| 1981 sources += [ | 1981 sources += [ |
| 1982 "views/try_chrome_dialog_view.cc", | 1982 "views/try_chrome_dialog.cc", |
| 1983 "views/try_chrome_dialog_view.h", | 1983 "views/try_chrome_dialog.h", |
| 1984 ] | 1984 ] |
| 1985 } | 1985 } |
| 1986 | 1986 |
| 1987 if (!is_mac) { | 1987 if (!is_mac) { |
| 1988 sources += [ | 1988 sources += [ |
| 1989 "views/create_application_shortcut_view.cc", | 1989 "views/create_application_shortcut_view.cc", |
| 1990 "views/create_application_shortcut_view.h", | 1990 "views/create_application_shortcut_view.h", |
| 1991 | 1991 |
| 1992 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window | 1992 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window |
| 1993 # apart from aura::Window, which is also not supported). | 1993 # apart from aura::Window, which is also not supported). |
| (...skipping 1703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3697 deps += [ | 3697 deps += [ |
| 3698 "//chrome/test:test_support_ui", | 3698 "//chrome/test:test_support_ui", |
| 3699 "//components/zoom", | 3699 "//components/zoom", |
| 3700 ] | 3700 ] |
| 3701 } | 3701 } |
| 3702 | 3702 |
| 3703 if (enable_extensions) { | 3703 if (enable_extensions) { |
| 3704 deps += [ "//extensions/browser" ] | 3704 deps += [ "//extensions/browser" ] |
| 3705 } | 3705 } |
| 3706 } | 3706 } |
| OLD | NEW |