Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(855)

Side by Side Diff: ui/base/BUILD.gn

Issue 738513002: Move the tests in ui/chromeos to a new target: ui_chromeos_unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 881 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 "dragdrop/os_exchange_data_unittest.cc" 892 "dragdrop/os_exchange_data_unittest.cc"
893 ] 893 ]
894 894
895 deps += [ 895 deps += [
896 "//ui/events", 896 "//ui/events",
897 "//ui/events/platform", 897 "//ui/events/platform",
898 ] 898 ]
899 } 899 }
900 900
901 if (is_chromeos) { 901 if (is_chromeos) {
902 sources += [
903 # TODO(pkotwicz): Move tests to their own target (crbug.com/432538)
904 "../chromeos/ime/candidate_view_unittest.cc",
905 "../chromeos/ime/candidate_window_view_unittest.cc",
906 "../chromeos/ime/input_method_menu_item_unittest.cc",
907 "../chromeos/ime/input_method_menu_manager_unittest.cc",
908 "../chromeos/network/network_state_notifier_unittest.cc",
909 "../chromeos/touch_exploration_controller_unittest.cc",
910 ]
911 sources -= [ 902 sources -= [
912 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", 903 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc",
913 "x/selection_requestor_unittest.cc", 904 "x/selection_requestor_unittest.cc",
914 ] 905 ]
915 deps += [ 906 deps += [
916 "//chromeos", 907 "//chromeos",
917 "//ui/aura:test_support",
918 "//ui/chromeos/resources",
919 "//ui/chromeos/strings",
920 "//ui/chromeos:ui_chromeos",
921 "//ui/events:gesture_detection",
922 "//ui/message_center:message_center",
923 "//ui/views",
924 "//ui/views:test_support",
925 ] 908 ]
926 } 909 }
927 } 910 }
928 } 911 }
929 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). 912 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk).
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698