| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 import("//ui/ozone/ozone.gni") | 9 import("//ui/ozone/ozone.gni") |
| 10 import("//ui/vector_icons/vector_icons.gni") | 10 import("//ui/vector_icons/vector_icons.gni") |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 } else if (is_win) { | 628 } else if (is_win) { |
| 629 sources += [ | 629 sources += [ |
| 630 "widget/desktop_aura/desktop_drag_drop_client_win.cc", | 630 "widget/desktop_aura/desktop_drag_drop_client_win.cc", |
| 631 "widget/desktop_aura/desktop_drag_drop_client_win.h", | 631 "widget/desktop_aura/desktop_drag_drop_client_win.h", |
| 632 "widget/desktop_aura/desktop_screen_win.cc", | 632 "widget/desktop_aura/desktop_screen_win.cc", |
| 633 "widget/desktop_aura/desktop_screen_win.h", | 633 "widget/desktop_aura/desktop_screen_win.h", |
| 634 "widget/desktop_aura/desktop_window_tree_host_win.cc", | 634 "widget/desktop_aura/desktop_window_tree_host_win.cc", |
| 635 "widget/desktop_aura/desktop_window_tree_host_win.h", | 635 "widget/desktop_aura/desktop_window_tree_host_win.h", |
| 636 ] | 636 ] |
| 637 } else if (use_ozone) { | 637 } else if (use_ozone) { |
| 638 sources += [ | 638 sources += [ "widget/desktop_aura/desktop_window_tree_host_ozone.cc" ] |
| 639 "widget/desktop_aura/desktop_factory_ozone.cc", | |
| 640 "widget/desktop_aura/desktop_factory_ozone.h", | |
| 641 "widget/desktop_aura/desktop_screen_ozone.cc", | |
| 642 "widget/desktop_aura/desktop_window_tree_host_ozone.cc", | |
| 643 ] | |
| 644 } | 639 } |
| 645 if (is_linux) { | 640 if (is_linux) { |
| 646 sources += [ "style/platform_style_linux.cc" ] | 641 sources += [ "style/platform_style_linux.cc" ] |
| 647 } | 642 } |
| 648 } | 643 } |
| 649 } | 644 } |
| 650 | 645 |
| 651 if (is_mac) { | 646 if (is_mac) { |
| 652 deps += [ | 647 deps += [ |
| 653 "//ui/accelerated_widget_mac", | 648 "//ui/accelerated_widget_mac", |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1077 "//ui/base:test_support", | 1072 "//ui/base:test_support", |
| 1078 "//ui/compositor", | 1073 "//ui/compositor", |
| 1079 "//ui/events:test_support", | 1074 "//ui/events:test_support", |
| 1080 "//ui/gl:test_support", | 1075 "//ui/gl:test_support", |
| 1081 "//ui/resources", | 1076 "//ui/resources", |
| 1082 "//ui/resources:ui_test_pak", | 1077 "//ui/resources:ui_test_pak", |
| 1083 "//ui/strings", | 1078 "//ui/strings", |
| 1084 ] | 1079 ] |
| 1085 } | 1080 } |
| 1086 } | 1081 } |
| OLD | NEW |