| 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 component("ui_chromeos") { | 5 component("ui_chromeos") { |
| 6 sources = [ | 6 sources = [ |
| 7 "accessibility_types.h", | 7 "accessibility_types.h", |
| 8 "ime/candidate_view.cc", | 8 "ime/candidate_view.cc", |
| 9 "ime/candidate_view.h", | 9 "ime/candidate_view.h", |
| 10 "ime/candidate_window_view.cc", | 10 "ime/candidate_window_view.cc", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "//ui/chromeos/resources", | 45 "//ui/chromeos/resources", |
| 46 "//ui/chromeos/strings", | 46 "//ui/chromeos/strings", |
| 47 "//ui/events", | 47 "//ui/events", |
| 48 "//ui/events:gesture_detection", | 48 "//ui/events:gesture_detection", |
| 49 "//ui/message_center", | 49 "//ui/message_center", |
| 50 "//ui/views", | 50 "//ui/views", |
| 51 "//ui/wm", | 51 "//ui/wm", |
| 52 ] | 52 ] |
| 53 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] | 53 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] |
| 54 } | 54 } |
| 55 |
| 56 test("ui_chromeos_unittests") { |
| 57 sources = [ |
| 58 "../chromeos/ime/candidate_view_unittest.cc", |
| 59 "../chromeos/ime/candidate_window_view_unittest.cc", |
| 60 "../chromeos/ime/input_method_menu_item_unittest.cc", |
| 61 "../chromeos/ime/input_method_menu_manager_unittest.cc", |
| 62 "../chromeos/network/network_state_notifier_unittest.cc", |
| 63 "../chromeos/touch_exploration_controller_unittest.cc", |
| 64 "run_all_unittests.cc", |
| 65 ] |
| 66 deps = [ |
| 67 ":ui_chromeos", |
| 68 "//base/test:test_support", |
| 69 "//chromeos", |
| 70 "//skia", |
| 71 "//testing/gtest", |
| 72 "//ui/aura:test_support", |
| 73 "//ui/compositor", |
| 74 "//ui/message_center", |
| 75 "//ui/resources:ui_test_pak", |
| 76 "//ui/views", |
| 77 "//ui/views:test_support", |
| 78 ] |
| 79 } |
| OLD | NEW |