| 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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 "widget/desktop_aura/desktop_drag_drop_client_win.h", | 651 "widget/desktop_aura/desktop_drag_drop_client_win.h", |
| 652 "widget/desktop_aura/desktop_screen_win.cc", | 652 "widget/desktop_aura/desktop_screen_win.cc", |
| 653 "widget/desktop_aura/desktop_screen_win.h", | 653 "widget/desktop_aura/desktop_screen_win.h", |
| 654 "widget/desktop_aura/desktop_window_tree_host_win.cc", | 654 "widget/desktop_aura/desktop_window_tree_host_win.cc", |
| 655 "widget/desktop_aura/desktop_window_tree_host_win.h", | 655 "widget/desktop_aura/desktop_window_tree_host_win.h", |
| 656 ] | 656 ] |
| 657 } else if (use_ozone) { | 657 } else if (use_ozone) { |
| 658 sources += [ "widget/desktop_aura/desktop_window_tree_host_ozone.cc" ] | 658 sources += [ "widget/desktop_aura/desktop_window_tree_host_ozone.cc" ] |
| 659 } | 659 } |
| 660 if (is_linux) { | 660 if (is_linux) { |
| 661 sources += [ "style/platform_style_linux.cc" ] | 661 sources += [ |
| 662 "style/platform_style_linux.cc", |
| 663 "widget/desktop_aura/window_event_filter.cc", |
| 664 "widget/desktop_aura/window_event_filter.h", |
| 665 ] |
| 662 } | 666 } |
| 663 } | 667 } |
| 664 } | 668 } |
| 665 | 669 |
| 666 if (is_mac) { | 670 if (is_mac) { |
| 667 deps += [ | 671 deps += [ |
| 668 "//ui/accelerated_widget_mac", | 672 "//ui/accelerated_widget_mac", |
| 669 "//ui/events:dom_keycode_converter", | 673 "//ui/events:dom_keycode_converter", |
| 670 ] | 674 ] |
| 671 libs = [ | 675 libs = [ |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1110 "//ui/base:test_support", | 1114 "//ui/base:test_support", |
| 1111 "//ui/compositor", | 1115 "//ui/compositor", |
| 1112 "//ui/events:test_support", | 1116 "//ui/events:test_support", |
| 1113 "//ui/gl:test_support", | 1117 "//ui/gl:test_support", |
| 1114 "//ui/resources", | 1118 "//ui/resources", |
| 1115 "//ui/resources:ui_test_pak", | 1119 "//ui/resources:ui_test_pak", |
| 1116 "//ui/strings", | 1120 "//ui/strings", |
| 1117 ] | 1121 ] |
| 1118 } | 1122 } |
| 1119 } | 1123 } |
| OLD | NEW |