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