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/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 "dragdrop/os_exchange_data_unittest.cc" | 888 "dragdrop/os_exchange_data_unittest.cc" |
| 889 ] | 889 ] |
| 890 | 890 |
| 891 deps += [ | 891 deps += [ |
| 892 "//ui/events", | 892 "//ui/events", |
| 893 "//ui/events/platform", | 893 "//ui/events/platform", |
| 894 ] | 894 ] |
| 895 } | 895 } |
| 896 | 896 |
| 897 if (is_chromeos) { | 897 if (is_chromeos) { |
| 898 sources += [ | |
| 899 # TODO(pkotwicz): Move tests to their own target (crbug.com/432538) | |
| 900 "../chromeos/ime/candidate_view_unittest.cc", | |
| 901 "../chromeos/ime/candidate_window_view_unittest.cc", | |
| 902 "../chromeos/ime/input_method_menu_item_unittest.cc", | |
| 903 "../chromeos/ime/input_method_menu_manager_unittest.cc", | |
| 904 "../chromeos/network/network_state_notifier_unittest.cc", | |
| 905 "../chromeos/touch_exploration_controller_unittest.cc", | |
| 906 ] | |
| 907 sources -= [ | 898 sources -= [ |
| 908 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | 899 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", |
| 909 "x/selection_requestor_unittest.cc", | 900 "x/selection_requestor_unittest.cc", |
| 910 ] | 901 ] |
| 911 deps += [ | 902 deps += [ |
| 912 "//chromeos", | 903 "//chromeos", |
| 913 "//ui/aura:test_support", | |
| 914 "//ui/chromeos/resources", | |
| 915 "//ui/chromeos/strings", | |
| 916 "//ui/chromeos:ui_chromeos", | |
| 917 "//ui/events:gesture_detection", | |
| 918 "//ui/message_center:message_center", | |
| 919 "//ui/views", | |
| 920 "//ui/views:test_support", | |
|
oshima
2014/11/18 16:20:38
nice!
| |
| 921 ] | 904 ] |
| 922 } | 905 } |
| 923 } | 906 } |
| 924 } | 907 } |
| 925 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 908 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
| OLD | NEW |