| 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 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1889 "views/translate/translate_icon_view.h", | 1889 "views/translate/translate_icon_view.h", |
| 1890 "views/update_recommended_message_box.cc", | 1890 "views/update_recommended_message_box.cc", |
| 1891 "views/update_recommended_message_box.h", | 1891 "views/update_recommended_message_box.h", |
| 1892 "views/validation_message_bubble_view.cc", | 1892 "views/validation_message_bubble_view.cc", |
| 1893 "views/validation_message_bubble_view.h", | 1893 "views/validation_message_bubble_view.h", |
| 1894 "views/website_settings/chooser_bubble_ui_view.cc", | 1894 "views/website_settings/chooser_bubble_ui_view.cc", |
| 1895 "views/website_settings/chooser_bubble_ui_view.h", | 1895 "views/website_settings/chooser_bubble_ui_view.h", |
| 1896 "views/website_settings/permission_prompt_impl_views.cc", | 1896 "views/website_settings/permission_prompt_impl_views.cc", |
| 1897 ] | 1897 ] |
| 1898 | 1898 |
| 1899 deps += [ "//ui/views/resources/vector_icons" ] | |
| 1900 | |
| 1901 if (use_aura) { | 1899 if (use_aura) { |
| 1902 deps += [ | 1900 deps += [ |
| 1903 "//services/ui/public/cpp", | 1901 "//services/ui/public/cpp", |
| 1904 "//services/ui/public/interfaces", | 1902 "//services/ui/public/interfaces", |
| 1905 ] | 1903 ] |
| 1906 } | 1904 } |
| 1907 | 1905 |
| 1908 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window | 1906 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window |
| 1909 # apart from aura::Window, which is also not supported). | 1907 # apart from aura::Window, which is also not supported). |
| 1910 if (!is_mac) { | 1908 if (!is_mac) { |
| (...skipping 1585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3496 "test/test_confirm_bubble_model.cc", | 3494 "test/test_confirm_bubble_model.cc", |
| 3497 "test/test_confirm_bubble_model.h", | 3495 "test/test_confirm_bubble_model.h", |
| 3498 ] | 3496 ] |
| 3499 deps += [ "//chrome/test:test_support_ui" ] | 3497 deps += [ "//chrome/test:test_support_ui" ] |
| 3500 } | 3498 } |
| 3501 | 3499 |
| 3502 if (enable_extensions) { | 3500 if (enable_extensions) { |
| 3503 deps += [ "//extensions/browser" ] | 3501 deps += [ "//extensions/browser" ] |
| 3504 } | 3502 } |
| 3505 } | 3503 } |
| OLD | NEW |