| 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 1899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1910 | 1910 |
| 1911 if (use_aura) { | 1911 if (use_aura) { |
| 1912 deps += [ | 1912 deps += [ |
| 1913 "//services/ui/public/cpp", | 1913 "//services/ui/public/cpp", |
| 1914 "//services/ui/public/interfaces", | 1914 "//services/ui/public/interfaces", |
| 1915 ] | 1915 ] |
| 1916 } | 1916 } |
| 1917 | 1917 |
| 1918 if (is_win) { | 1918 if (is_win) { |
| 1919 sources += [ | 1919 sources += [ |
| 1920 "views/try_chrome_dialog_view.cc", | 1920 "views/try_chrome_dialog.cc", |
| 1921 "views/try_chrome_dialog_view.h", | 1921 "views/try_chrome_dialog.h", |
| 1922 ] | 1922 ] |
| 1923 } | 1923 } |
| 1924 | 1924 |
| 1925 if (!is_mac) { | 1925 if (!is_mac) { |
| 1926 sources += [ | 1926 sources += [ |
| 1927 "views/create_application_shortcut_view.cc", | 1927 "views/create_application_shortcut_view.cc", |
| 1928 "views/create_application_shortcut_view.h", | 1928 "views/create_application_shortcut_view.h", |
| 1929 | 1929 |
| 1930 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window | 1930 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window |
| 1931 # apart from aura::Window, which is also not supported). | 1931 # apart from aura::Window, which is also not supported). |
| (...skipping 1695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3627 deps += [ | 3627 deps += [ |
| 3628 "//chrome/test:test_support_ui", | 3628 "//chrome/test:test_support_ui", |
| 3629 "//components/zoom", | 3629 "//components/zoom", |
| 3630 ] | 3630 ] |
| 3631 } | 3631 } |
| 3632 | 3632 |
| 3633 if (enable_extensions) { | 3633 if (enable_extensions) { |
| 3634 deps += [ "//extensions/browser" ] | 3634 deps += [ "//extensions/browser" ] |
| 3635 } | 3635 } |
| 3636 } | 3636 } |
| OLD | NEW |