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 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1670 "views/extensions/media_galleries_dialog_views.h", | 1670 "views/extensions/media_galleries_dialog_views.h", |
1671 "views/extensions/media_gallery_checkbox_view.cc", | 1671 "views/extensions/media_gallery_checkbox_view.cc", |
1672 "views/extensions/media_gallery_checkbox_view.h", | 1672 "views/extensions/media_gallery_checkbox_view.h", |
1673 ] | 1673 ] |
1674 if (use_aura) { | 1674 if (use_aura) { |
1675 sources += [ | 1675 sources += [ |
1676 "views/extensions/extension_popup_aura.cc", | 1676 "views/extensions/extension_popup_aura.cc", |
1677 "views/extensions/extension_popup_aura.h", | 1677 "views/extensions/extension_popup_aura.h", |
1678 ] | 1678 ] |
1679 } | 1679 } |
1680 if (is_chromeos) { | |
1681 sources += [ | |
1682 "views/extensions/request_file_system_dialog_view.cc", | |
1683 "views/extensions/request_file_system_dialog_view.h", | |
1684 ] | |
1685 } | |
1686 } | 1680 } |
1687 if (!is_mac || mac_views_browser) { | 1681 if (!is_mac || mac_views_browser) { |
1688 sources += [ | 1682 sources += [ |
1689 "javascript_dialogs/javascript_dialog.cc", | 1683 "javascript_dialogs/javascript_dialog.cc", |
1690 | 1684 |
1691 # This test header is included because it contains forward declarations | 1685 # This test header is included because it contains forward declarations |
1692 # needed for "friend" statements for use in tests. | 1686 # needed for "friend" statements for use in tests. |
1693 "translate/translate_bubble_test_utils.h", | 1687 "translate/translate_bubble_test_utils.h", |
1694 "views/accessibility/invert_bubble_view.cc", | 1688 "views/accessibility/invert_bubble_view.cc", |
1695 "views/accessibility/invert_bubble_view.h", | 1689 "views/accessibility/invert_bubble_view.h", |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1934 "views/webshare/webshare_target_picker_view.h", | 1928 "views/webshare/webshare_target_picker_view.h", |
1935 ] | 1929 ] |
1936 | 1930 |
1937 if (use_aura) { | 1931 if (use_aura) { |
1938 deps += [ | 1932 deps += [ |
1939 "//services/ui/public/cpp", | 1933 "//services/ui/public/cpp", |
1940 "//services/ui/public/interfaces", | 1934 "//services/ui/public/interfaces", |
1941 ] | 1935 ] |
1942 } | 1936 } |
1943 | 1937 |
1944 if (is_win) { | |
1945 sources += [ | |
1946 "views/try_chrome_dialog_view.cc", | |
1947 "views/try_chrome_dialog_view.h", | |
1948 ] | |
1949 } | |
1950 | |
1951 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window | 1938 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window |
1952 # apart from aura::Window, which is also not supported). | 1939 # apart from aura::Window, which is also not supported). |
1953 if (!is_mac) { | 1940 if (!is_mac) { |
1954 sources += [ | 1941 sources += [ |
1955 "views/ime_driver/ime_driver_mus.cc", | 1942 "views/ime_driver/ime_driver_mus.cc", |
1956 "views/ime_driver/ime_driver_mus.h", | 1943 "views/ime_driver/ime_driver_mus.h", |
1957 "views/ime_driver/input_method_bridge_chromeos.cc", | 1944 "views/ime_driver/input_method_bridge_chromeos.cc", |
1958 "views/ime_driver/input_method_bridge_chromeos.h", | 1945 "views/ime_driver/input_method_bridge_chromeos.h", |
1959 "views/ime_driver/remote_text_input_client.cc", | 1946 "views/ime_driver/remote_text_input_client.cc", |
1960 "views/ime_driver/remote_text_input_client.h", | 1947 "views/ime_driver/remote_text_input_client.h", |
(...skipping 1627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3588 "test/test_confirm_bubble_model.cc", | 3575 "test/test_confirm_bubble_model.cc", |
3589 "test/test_confirm_bubble_model.h", | 3576 "test/test_confirm_bubble_model.h", |
3590 ] | 3577 ] |
3591 deps += [ "//chrome/test:test_support_ui" ] | 3578 deps += [ "//chrome/test:test_support_ui" ] |
3592 } | 3579 } |
3593 | 3580 |
3594 if (enable_extensions) { | 3581 if (enable_extensions) { |
3595 deps += [ "//extensions/browser" ] | 3582 deps += [ "//extensions/browser" ] |
3596 } | 3583 } |
3597 } | 3584 } |
OLD | NEW |