| 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 21 matching lines...) Expand all Loading... |
| 32 "network/network_state_notifier.cc", | 32 "network/network_state_notifier.cc", |
| 33 "network/network_state_notifier.h", | 33 "network/network_state_notifier.h", |
| 34 "touch_exploration_controller.cc", | 34 "touch_exploration_controller.cc", |
| 35 "touch_exploration_controller.h", | 35 "touch_exploration_controller.h", |
| 36 "user_activity_power_manager_notifier.cc", | 36 "user_activity_power_manager_notifier.cc", |
| 37 "user_activity_power_manager_notifier.h", | 37 "user_activity_power_manager_notifier.h", |
| 38 ] | 38 ] |
| 39 deps = [ | 39 deps = [ |
| 40 "//base", | 40 "//base", |
| 41 "//base/third_party/dynamic_annotations", | 41 "//base/third_party/dynamic_annotations", |
| 42 "//chromeos:chromeos", |
| 42 "//chromeos:power_manager_proto", | 43 "//chromeos:power_manager_proto", |
| 43 "//skia", | 44 "//skia", |
| 44 "//ui/aura", | 45 "//ui/aura", |
| 46 "//ui/base", |
| 45 "//ui/chromeos/resources", | 47 "//ui/chromeos/resources", |
| 46 "//ui/chromeos/strings", | 48 "//ui/chromeos/strings", |
| 47 "//ui/events", | 49 "//ui/events", |
| 48 "//ui/events:gesture_detection", | 50 "//ui/events:gesture_detection", |
| 51 "//ui/gfx", |
| 52 "//ui/gfx/geometry", |
| 49 "//ui/message_center", | 53 "//ui/message_center", |
| 50 "//ui/views", | 54 "//ui/views", |
| 51 "//ui/wm", | 55 "//ui/wm", |
| 52 ] | 56 ] |
| 53 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] | 57 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] |
| 54 } | 58 } |
| 55 | 59 |
| 56 test("ui_chromeos_unittests") { | 60 test("ui_chromeos_unittests") { |
| 57 sources = [ | 61 sources = [ |
| 58 "ime/candidate_view_unittest.cc", | 62 "ime/candidate_view_unittest.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 70 "//skia", | 74 "//skia", |
| 71 "//testing/gtest", | 75 "//testing/gtest", |
| 72 "//ui/aura:test_support", | 76 "//ui/aura:test_support", |
| 73 "//ui/compositor", | 77 "//ui/compositor", |
| 74 "//ui/message_center", | 78 "//ui/message_center", |
| 75 "//ui/resources:ui_test_pak", | 79 "//ui/resources:ui_test_pak", |
| 76 "//ui/views", | 80 "//ui/views", |
| 77 "//ui/views:test_support", | 81 "//ui/views:test_support", |
| 78 ] | 82 ] |
| 79 } | 83 } |
| OLD | NEW |