| 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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 "//ui/events/devices", | 923 "//ui/events/devices", |
| 924 "//ui/events/platform/x11", | 924 "//ui/events/platform/x11", |
| 925 "//ui/gfx/x", | 925 "//ui/gfx/x", |
| 926 ] | 926 ] |
| 927 } | 927 } |
| 928 | 928 |
| 929 if (use_aura) { | 929 if (use_aura) { |
| 930 sources += [ | 930 sources += [ |
| 931 "accessibility/ax_aura_obj_cache_unittest.cc", | 931 "accessibility/ax_aura_obj_cache_unittest.cc", |
| 932 "controls/native/native_view_host_aura_unittest.cc", | 932 "controls/native/native_view_host_aura_unittest.cc", |
| 933 "corewm/tooltip_controller_unittest.cc", |
| 933 "touchui/touch_selection_menu_runner_views_unittest.cc", | 934 "touchui/touch_selection_menu_runner_views_unittest.cc", |
| 934 "view_unittest_aura.cc", | 935 "view_unittest_aura.cc", |
| 935 "widget/native_widget_aura_unittest.cc", | 936 "widget/native_widget_aura_unittest.cc", |
| 936 ] | 937 ] |
| 937 public_deps += [ | 938 public_deps += [ |
| 938 "//ui/aura", | 939 "//ui/aura", |
| 939 "//ui/aura:test_support", | 940 "//ui/aura:test_support", |
| 940 "//ui/touch_selection", | 941 "//ui/touch_selection", |
| 941 "//ui/wm", | 942 "//ui/wm", |
| 942 ] | 943 ] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 958 "run_all_unittests_main.cc", | 959 "run_all_unittests_main.cc", |
| 959 | 960 |
| 960 # EventGenerator doesn't work well with IME in mus so this must not be in | 961 # EventGenerator doesn't work well with IME in mus so this must not be in |
| 961 # the shared unit test sources. | 962 # the shared unit test sources. |
| 962 # crbug.com/615033 crbug.com/548407 | 963 # crbug.com/615033 crbug.com/548407 |
| 963 "controls/textfield/textfield_unittest.cc", | 964 "controls/textfield/textfield_unittest.cc", |
| 964 ] | 965 ] |
| 965 | 966 |
| 966 if (use_aura) { | 967 if (use_aura) { |
| 967 sources += [ | 968 sources += [ |
| 968 # Tooltips. Can not be shared with mus: crbug.com/599558 | |
| 969 "corewm/tooltip_controller_unittest.cc", | |
| 970 | |
| 971 # Some of the tests need drag-drop support. crbug.com/614037 | 969 # Some of the tests need drag-drop support. crbug.com/614037 |
| 972 "touchui/touch_selection_controller_impl_unittest.cc", | 970 "touchui/touch_selection_controller_impl_unittest.cc", |
| 973 ] | 971 ] |
| 974 | 972 |
| 975 if (!is_chromeos) { | 973 if (!is_chromeos) { |
| 976 sources += [ | 974 sources += [ |
| 977 "widget/desktop_aura/desktop_focus_rules_unittest.cc", | 975 "widget/desktop_aura/desktop_focus_rules_unittest.cc", |
| 978 "widget/desktop_aura/desktop_native_widget_aura_unittest.cc", | 976 "widget/desktop_aura/desktop_native_widget_aura_unittest.cc", |
| 979 ] | 977 ] |
| 980 if (use_x11) { | 978 if (use_x11) { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1013 "//ui/base:test_support", | 1011 "//ui/base:test_support", |
| 1014 "//ui/compositor", | 1012 "//ui/compositor", |
| 1015 "//ui/events:test_support", | 1013 "//ui/events:test_support", |
| 1016 "//ui/gl:test_support", | 1014 "//ui/gl:test_support", |
| 1017 "//ui/resources", | 1015 "//ui/resources", |
| 1018 "//ui/resources:ui_test_pak", | 1016 "//ui/resources:ui_test_pak", |
| 1019 "//ui/strings", | 1017 "//ui/strings", |
| 1020 ] | 1018 ] |
| 1021 } | 1019 } |
| 1022 } | 1020 } |
| OLD | NEW |