| 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 1876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1887 "views/translate/translate_icon_view.cc", | 1887 "views/translate/translate_icon_view.cc", |
| 1888 "views/translate/translate_icon_view.h", | 1888 "views/translate/translate_icon_view.h", |
| 1889 "views/update_recommended_message_box.cc", | 1889 "views/update_recommended_message_box.cc", |
| 1890 "views/update_recommended_message_box.h", | 1890 "views/update_recommended_message_box.h", |
| 1891 "views/validation_message_bubble_view.cc", | 1891 "views/validation_message_bubble_view.cc", |
| 1892 "views/validation_message_bubble_view.h", | 1892 "views/validation_message_bubble_view.h", |
| 1893 "views/website_settings/chooser_bubble_ui_view.cc", | 1893 "views/website_settings/chooser_bubble_ui_view.cc", |
| 1894 "views/website_settings/chooser_bubble_ui_view.h", | 1894 "views/website_settings/chooser_bubble_ui_view.h", |
| 1895 "views/website_settings/permission_prompt_impl_views.cc", | 1895 "views/website_settings/permission_prompt_impl_views.cc", |
| 1896 ] | 1896 ] |
| 1897 |
| 1898 deps += [ "//ui/views/resources/vector_icons" ] |
| 1899 |
| 1897 if (use_aura) { | 1900 if (use_aura) { |
| 1898 deps += [ | 1901 deps += [ |
| 1899 "//services/ui/public/cpp", | 1902 "//services/ui/public/cpp", |
| 1900 "//services/ui/public/interfaces", | 1903 "//services/ui/public/interfaces", |
| 1901 ] | 1904 ] |
| 1902 } | 1905 } |
| 1903 | 1906 |
| 1904 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window | 1907 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window |
| 1905 # apart from aura::Window, which is also not supported). | 1908 # apart from aura::Window, which is also not supported). |
| 1906 if (!is_mac) { | 1909 if (!is_mac) { |
| (...skipping 1575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3482 "test/test_confirm_bubble_model.cc", | 3485 "test/test_confirm_bubble_model.cc", |
| 3483 "test/test_confirm_bubble_model.h", | 3486 "test/test_confirm_bubble_model.h", |
| 3484 ] | 3487 ] |
| 3485 deps += [ "//chrome/test:test_support_ui" ] | 3488 deps += [ "//chrome/test:test_support_ui" ] |
| 3486 } | 3489 } |
| 3487 | 3490 |
| 3488 if (enable_extensions) { | 3491 if (enable_extensions) { |
| 3489 deps += [ "//extensions/browser" ] | 3492 deps += [ "//extensions/browser" ] |
| 3490 } | 3493 } |
| 3491 } | 3494 } |
| OLD | NEW |