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