Chromium Code Reviews| 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 1526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1537 | 1537 |
| 1538 if (enable_extensions) { | 1538 if (enable_extensions) { |
| 1539 deps += [ "//extensions/components/native_app_window" ] | 1539 deps += [ "//extensions/components/native_app_window" ] |
| 1540 } | 1540 } |
| 1541 | 1541 |
| 1542 if (is_chromeos) { | 1542 if (is_chromeos) { |
| 1543 sources += [ | 1543 sources += [ |
| 1544 "views/apps/app_info_dialog/arc_app_info_links_panel.cc", | 1544 "views/apps/app_info_dialog/arc_app_info_links_panel.cc", |
| 1545 "views/apps/app_info_dialog/arc_app_info_links_panel.h", | 1545 "views/apps/app_info_dialog/arc_app_info_links_panel.h", |
| 1546 ] | 1546 ] |
| 1547 } else if (!is_mac || mac_views_browser) { | 1547 } else { |
| 1548 sources += [ | 1548 sources += [ |
| 1549 "external_protocol_dialog_delegate.cc", | 1549 "external_protocol_dialog_delegate.cc", |
| 1550 "external_protocol_dialog_delegate.h", | 1550 "external_protocol_dialog_delegate.h", |
| 1551 "views/external_protocol_dialog.cc", | 1551 "views/external_protocol_dialog.cc", |
|
tapted
2017/01/17 21:17:13
Can external_protocol_dialog_browsertest be switch
karandeepb
2017/01/24 03:23:32
Done.
| |
| 1552 "views/external_protocol_dialog.h", | 1552 "views/external_protocol_dialog.h", |
| 1553 "views/frame/opaque_browser_frame_view.cc", | |
| 1554 "views/frame/opaque_browser_frame_view.h", | |
| 1555 "views/frame/opaque_browser_frame_view_layout.cc", | |
| 1556 "views/frame/opaque_browser_frame_view_layout.h", | |
| 1557 "views/frame/opaque_browser_frame_view_layout_delegate.h", | |
| 1558 "views/frame/opaque_browser_frame_view_linux.cc", | |
| 1559 "views/frame/opaque_browser_frame_view_linux.h", | |
| 1560 "views/frame/opaque_browser_frame_view_platform_specific.cc", | |
| 1561 "views/frame/opaque_browser_frame_view_platform_specific.h", | |
| 1562 "views/profiles/profile_chooser_view.cc", | |
| 1563 "views/profiles/profile_chooser_view.h", | |
| 1564 "views/screen_capture_notification_ui_views.cc", | |
| 1565 "views/sync/one_click_signin_dialog_view.cc", | |
| 1566 "views/sync/one_click_signin_dialog_view.h", | |
| 1567 ] | 1553 ] |
| 1554 | |
| 1555 if (!is_mac || mac_views_browser) { | |
|
tapted
2017/01/17 21:17:13
nesting this also with toolkit_views might be a bi
karandeepb
2017/01/24 03:23:32
Done.
| |
| 1556 sources += [ | |
| 1557 "views/frame/opaque_browser_frame_view.cc", | |
| 1558 "views/frame/opaque_browser_frame_view.h", | |
| 1559 "views/frame/opaque_browser_frame_view_layout.cc", | |
| 1560 "views/frame/opaque_browser_frame_view_layout.h", | |
| 1561 "views/frame/opaque_browser_frame_view_layout_delegate.h", | |
| 1562 "views/frame/opaque_browser_frame_view_linux.cc", | |
| 1563 "views/frame/opaque_browser_frame_view_linux.h", | |
| 1564 "views/frame/opaque_browser_frame_view_platform_specific.cc", | |
| 1565 "views/frame/opaque_browser_frame_view_platform_specific.h", | |
| 1566 "views/profiles/profile_chooser_view.cc", | |
| 1567 "views/profiles/profile_chooser_view.h", | |
| 1568 "views/screen_capture_notification_ui_views.cc", | |
| 1569 "views/sync/one_click_signin_dialog_view.cc", | |
| 1570 "views/sync/one_click_signin_dialog_view.h", | |
| 1571 ] | |
| 1572 } | |
| 1568 } | 1573 } |
| 1569 | 1574 |
| 1570 # These files do Gtk+-based theming, but Gtk+ is not available on | 1575 # These files do Gtk+-based theming, but Gtk+ is not available on |
| 1571 # Ozone builds, or on common environments where Ozone will be used. | 1576 # Ozone builds, or on common environments where Ozone will be used. |
| 1572 # | 1577 # |
| 1573 # TODO(tonikitoo): It seems sensible to make it possible to opt-in | 1578 # TODO(tonikitoo): It seems sensible to make it possible to opt-in |
| 1574 # the use of these files in case Gtk is available with its Wayland. | 1579 # the use of these files in case Gtk is available with its Wayland. |
| 1575 if (use_aura && !use_ozone && is_desktop_linux) { | 1580 if (use_aura && !use_ozone && is_desktop_linux) { |
| 1576 sources += [ | 1581 sources += [ |
| 1577 "views/chrome_browser_main_extra_parts_views_linux.cc", | 1582 "views/chrome_browser_main_extra_parts_views_linux.cc", |
| (...skipping 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2673 "cocoa/extensions/extension_view_mac.mm", | 2678 "cocoa/extensions/extension_view_mac.mm", |
| 2674 "cocoa/extensions/media_galleries_dialog_cocoa.h", | 2679 "cocoa/extensions/media_galleries_dialog_cocoa.h", |
| 2675 "cocoa/extensions/media_galleries_dialog_cocoa.mm", | 2680 "cocoa/extensions/media_galleries_dialog_cocoa.mm", |
| 2676 "cocoa/extensions/media_gallery_list_entry_view.h", | 2681 "cocoa/extensions/media_gallery_list_entry_view.h", |
| 2677 "cocoa/extensions/media_gallery_list_entry_view.mm", | 2682 "cocoa/extensions/media_gallery_list_entry_view.mm", |
| 2678 "cocoa/extensions/toolbar_actions_bar_bubble_mac.h", | 2683 "cocoa/extensions/toolbar_actions_bar_bubble_mac.h", |
| 2679 "cocoa/extensions/toolbar_actions_bar_bubble_mac.mm", | 2684 "cocoa/extensions/toolbar_actions_bar_bubble_mac.mm", |
| 2680 "cocoa/extensions/windowed_install_dialog_controller.h", | 2685 "cocoa/extensions/windowed_install_dialog_controller.h", |
| 2681 "cocoa/extensions/windowed_install_dialog_controller.mm", | 2686 "cocoa/extensions/windowed_install_dialog_controller.mm", |
| 2682 "cocoa/external_protocol_dialog.h", | 2687 "cocoa/external_protocol_dialog.h", |
| 2683 "cocoa/external_protocol_dialog.mm", | 2688 "cocoa/external_protocol_dialog_cocoa.mm", |
| 2684 "cocoa/fast_resize_view.h", | 2689 "cocoa/fast_resize_view.h", |
| 2685 "cocoa/fast_resize_view.mm", | 2690 "cocoa/fast_resize_view.mm", |
| 2686 "cocoa/find_bar/find_bar_bridge.h", | 2691 "cocoa/find_bar/find_bar_bridge.h", |
| 2687 "cocoa/find_bar/find_bar_bridge.mm", | 2692 "cocoa/find_bar/find_bar_bridge.mm", |
| 2688 "cocoa/find_bar/find_bar_cocoa_controller.h", | 2693 "cocoa/find_bar/find_bar_cocoa_controller.h", |
| 2689 "cocoa/find_bar/find_bar_cocoa_controller.mm", | 2694 "cocoa/find_bar/find_bar_cocoa_controller.mm", |
| 2690 "cocoa/find_bar/find_bar_text_field.h", | 2695 "cocoa/find_bar/find_bar_text_field.h", |
| 2691 "cocoa/find_bar/find_bar_text_field.mm", | 2696 "cocoa/find_bar/find_bar_text_field.mm", |
| 2692 "cocoa/find_bar/find_bar_text_field_cell.h", | 2697 "cocoa/find_bar/find_bar_text_field_cell.h", |
| 2693 "cocoa/find_bar/find_bar_text_field_cell.mm", | 2698 "cocoa/find_bar/find_bar_text_field_cell.mm", |
| (...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3488 "test/test_confirm_bubble_model.cc", | 3493 "test/test_confirm_bubble_model.cc", |
| 3489 "test/test_confirm_bubble_model.h", | 3494 "test/test_confirm_bubble_model.h", |
| 3490 ] | 3495 ] |
| 3491 deps += [ "//chrome/test:test_support_ui" ] | 3496 deps += [ "//chrome/test:test_support_ui" ] |
| 3492 } | 3497 } |
| 3493 | 3498 |
| 3494 if (enable_extensions) { | 3499 if (enable_extensions) { |
| 3495 deps += [ "//extensions/browser" ] | 3500 deps += [ "//extensions/browser" ] |
| 3496 } | 3501 } |
| 3497 } | 3502 } |
| OLD | NEW |