Chromium Code Reviews| 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 907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 918 "//ui/events/devices", | 918 "//ui/events/devices", |
| 919 "//ui/events/platform/x11", | 919 "//ui/events/platform/x11", |
| 920 "//ui/gfx/x", | 920 "//ui/gfx/x", |
| 921 ] | 921 ] |
| 922 } | 922 } |
| 923 | 923 |
| 924 if (use_aura) { | 924 if (use_aura) { |
| 925 sources += [ | 925 sources += [ |
| 926 "accessibility/ax_aura_obj_cache_unittest.cc", | 926 "accessibility/ax_aura_obj_cache_unittest.cc", |
| 927 "controls/native/native_view_host_aura_unittest.cc", | 927 "controls/native/native_view_host_aura_unittest.cc", |
| 928 "corewm/tooltip_controller_unittest.cc", | |
|
sky
2016/09/30 15:15:30
Can you make sure this test actually ends up creat
Elliot Glaysher
2016/10/03 21:52:25
You're correct that this was wrong.
I've moved tw
| |
| 928 "touchui/touch_selection_menu_runner_views_unittest.cc", | 929 "touchui/touch_selection_menu_runner_views_unittest.cc", |
| 929 "view_unittest_aura.cc", | 930 "view_unittest_aura.cc", |
| 930 "widget/native_widget_aura_unittest.cc", | 931 "widget/native_widget_aura_unittest.cc", |
| 931 ] | 932 ] |
| 932 public_deps += [ | 933 public_deps += [ |
| 933 "//ui/aura", | 934 "//ui/aura", |
| 934 "//ui/aura:test_support", | 935 "//ui/aura:test_support", |
| 935 "//ui/touch_selection", | 936 "//ui/touch_selection", |
| 936 "//ui/wm", | 937 "//ui/wm", |
| 937 ] | 938 ] |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 953 "run_all_unittests_main.cc", | 954 "run_all_unittests_main.cc", |
| 954 | 955 |
| 955 # EventGenerator doesn't work well with IME in mus so this must not be in | 956 # EventGenerator doesn't work well with IME in mus so this must not be in |
| 956 # the shared unit test sources. | 957 # the shared unit test sources. |
| 957 # crbug.com/615033 crbug.com/548407 | 958 # crbug.com/615033 crbug.com/548407 |
| 958 "controls/textfield/textfield_unittest.cc", | 959 "controls/textfield/textfield_unittest.cc", |
| 959 ] | 960 ] |
| 960 | 961 |
| 961 if (use_aura) { | 962 if (use_aura) { |
| 962 sources += [ | 963 sources += [ |
| 963 # Tooltips. Can not be shared with mus: crbug.com/599558 | |
| 964 "corewm/tooltip_controller_unittest.cc", | |
| 965 | |
| 966 # Some of the tests need drag-drop support. crbug.com/614037 | 964 # Some of the tests need drag-drop support. crbug.com/614037 |
| 967 "touchui/touch_selection_controller_impl_unittest.cc", | 965 "touchui/touch_selection_controller_impl_unittest.cc", |
| 968 ] | 966 ] |
| 969 | 967 |
| 970 if (!is_chromeos) { | 968 if (!is_chromeos) { |
| 971 sources += [ | 969 sources += [ |
| 972 "widget/desktop_aura/desktop_focus_rules_unittest.cc", | 970 "widget/desktop_aura/desktop_focus_rules_unittest.cc", |
| 973 "widget/desktop_aura/desktop_native_widget_aura_unittest.cc", | 971 "widget/desktop_aura/desktop_native_widget_aura_unittest.cc", |
| 974 ] | 972 ] |
| 975 if (use_x11) { | 973 if (use_x11) { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1008 "//ui/base:test_support", | 1006 "//ui/base:test_support", |
| 1009 "//ui/compositor", | 1007 "//ui/compositor", |
| 1010 "//ui/events:test_support", | 1008 "//ui/events:test_support", |
| 1011 "//ui/gl:test_support", | 1009 "//ui/gl:test_support", |
| 1012 "//ui/resources", | 1010 "//ui/resources", |
| 1013 "//ui/resources:ui_test_pak", | 1011 "//ui/resources:ui_test_pak", |
| 1014 "//ui/strings", | 1012 "//ui/strings", |
| 1015 ] | 1013 ] |
| 1016 } | 1014 } |
| 1017 } | 1015 } |
| OLD | NEW |