| 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/ozone/ozone.gni") | 8 import("//ui/ozone/ozone.gni") |
| 9 | 9 |
| 10 config("flags") { | 10 config("flags") { |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 "widget/focus_manager_event_handler.cc", | 554 "widget/focus_manager_event_handler.cc", |
| 555 "widget/focus_manager_event_handler.h", | 555 "widget/focus_manager_event_handler.h", |
| 556 "widget/native_widget_aura.cc", | 556 "widget/native_widget_aura.cc", |
| 557 "widget/native_widget_aura.h", | 557 "widget/native_widget_aura.h", |
| 558 "widget/tooltip_manager_aura.cc", | 558 "widget/tooltip_manager_aura.cc", |
| 559 "widget/tooltip_manager_aura.h", | 559 "widget/tooltip_manager_aura.h", |
| 560 "widget/window_reorderer.cc", | 560 "widget/window_reorderer.cc", |
| 561 "widget/window_reorderer.h", | 561 "widget/window_reorderer.h", |
| 562 ] | 562 ] |
| 563 deps += [ | 563 deps += [ |
| 564 "//services/ui/public/interfaces", |
| 564 "//ui/aura", | 565 "//ui/aura", |
| 565 "//ui/touch_selection", | 566 "//ui/touch_selection", |
| 566 "//ui/wm", | 567 "//ui/wm", |
| 567 ] | 568 ] |
| 568 if (!is_chromeos) { | 569 if (!is_chromeos) { |
| 569 if (use_x11) { | 570 if (use_x11) { |
| 570 sources += [ | 571 sources += [ |
| 571 "widget/desktop_aura/desktop_drag_drop_client_aurax11.cc", | 572 "widget/desktop_aura/desktop_drag_drop_client_aurax11.cc", |
| 572 "widget/desktop_aura/desktop_drag_drop_client_aurax11.h", | 573 "widget/desktop_aura/desktop_drag_drop_client_aurax11.h", |
| 573 "widget/desktop_aura/desktop_screen_x11.cc", | 574 "widget/desktop_aura/desktop_screen_x11.cc", |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1015 "//ui/base:test_support", | 1016 "//ui/base:test_support", |
| 1016 "//ui/compositor", | 1017 "//ui/compositor", |
| 1017 "//ui/events:test_support", | 1018 "//ui/events:test_support", |
| 1018 "//ui/gl:test_support", | 1019 "//ui/gl:test_support", |
| 1019 "//ui/resources", | 1020 "//ui/resources", |
| 1020 "//ui/resources:ui_test_pak", | 1021 "//ui/resources:ui_test_pak", |
| 1021 "//ui/strings", | 1022 "//ui/strings", |
| 1022 ] | 1023 ] |
| 1023 } | 1024 } |
| 1024 } | 1025 } |
| OLD | NEW |