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/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
888 ] | 888 ] |
889 | 889 |
890 deps += [ | 890 deps += [ |
891 "//ui/events", | 891 "//ui/events", |
892 "//ui/events/platform", | 892 "//ui/events/platform", |
893 ] | 893 ] |
894 } | 894 } |
895 | 895 |
896 if (is_chromeos) { | 896 if (is_chromeos) { |
897 sources += [ | 897 sources += [ |
| 898 "../chromeos/ime/candidate_view_unittest.cc", |
| 899 "../chromeos/ime/candidate_window_view_unittest.cc", |
| 900 "../chromeos/ime/input_method_menu_item_unittest.cc", |
| 901 "../chromeos/ime/input_method_menu_manager_unittest.cc", |
898 "../chromeos/network/network_state_notifier_unittest.cc", | 902 "../chromeos/network/network_state_notifier_unittest.cc", |
899 "../chromeos/touch_exploration_controller_unittest.cc", | 903 "../chromeos/touch_exploration_controller_unittest.cc", |
900 ] | 904 ] |
901 sources -= [ | 905 sources -= [ |
902 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | 906 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", |
903 "x/selection_requestor_unittest.cc", | 907 "x/selection_requestor_unittest.cc", |
904 ] | 908 ] |
905 deps += [ | 909 deps += [ |
906 "//chromeos", | 910 "//chromeos", |
907 "//ui/aura:test_support", | 911 "//ui/aura:test_support", |
908 "//ui/chromeos/resources", | 912 "//ui/chromeos/resources", |
909 "//ui/chromeos/strings", | 913 "//ui/chromeos/strings", |
910 "//ui/chromeos:ui_chromeos", | 914 "//ui/chromeos:ui_chromeos", |
911 "//ui/events:gesture_detection", | 915 "//ui/events:gesture_detection", |
912 "//ui/message_center:message_center", | 916 "//ui/message_center:message_center", |
| 917 "//ui/views", |
| 918 "//ui/views:test_support", |
913 ] | 919 ] |
914 } | 920 } |
915 } | 921 } |
916 } | 922 } |
917 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 923 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
OLD | NEW |