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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("ui_chromeos") { | 7 component("ui_chromeos") { |
8 sources = [ | 8 sources = [ |
9 "accelerometer/accelerometer_util.cc", | 9 "accelerometer/accelerometer_util.cc", |
10 "accelerometer/accelerometer_util.h", | 10 "accelerometer/accelerometer_util.h", |
(...skipping 28 matching lines...) Expand all Loading... |
39 "touch_exploration_controller.h", | 39 "touch_exploration_controller.h", |
40 "user_activity_power_manager_notifier.cc", | 40 "user_activity_power_manager_notifier.cc", |
41 "user_activity_power_manager_notifier.h", | 41 "user_activity_power_manager_notifier.h", |
42 ] | 42 ] |
43 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] | 43 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] |
44 deps = [ | 44 deps = [ |
45 "//base", | 45 "//base", |
46 "//base/third_party/dynamic_annotations", | 46 "//base/third_party/dynamic_annotations", |
47 "//chromeos:chromeos", | 47 "//chromeos:chromeos", |
48 "//chromeos:power_manager_proto", | 48 "//chromeos:power_manager_proto", |
| 49 "//components/device_event_log", |
49 "//skia", | 50 "//skia", |
50 "//ui/aura", | 51 "//ui/aura", |
51 "//ui/base", | 52 "//ui/base", |
52 "//ui/base/ime", | 53 "//ui/base/ime", |
53 "//ui/chromeos/resources", | 54 "//ui/chromeos/resources", |
54 "//ui/chromeos/strings", | 55 "//ui/chromeos/strings", |
55 "//ui/events", | 56 "//ui/events", |
56 "//ui/events:gesture_detection", | 57 "//ui/events:gesture_detection", |
57 "//ui/gfx", | 58 "//ui/gfx", |
58 "//ui/gfx/geometry", | 59 "//ui/gfx/geometry", |
(...skipping 23 matching lines...) Expand all Loading... |
82 "//ui/aura:test_support", | 83 "//ui/aura:test_support", |
83 "//ui/compositor", | 84 "//ui/compositor", |
84 "//ui/events:test_support", | 85 "//ui/events:test_support", |
85 "//ui/gl", | 86 "//ui/gl", |
86 "//ui/message_center", | 87 "//ui/message_center", |
87 "//ui/resources:ui_test_pak", | 88 "//ui/resources:ui_test_pak", |
88 "//ui/views", | 89 "//ui/views", |
89 "//ui/views:test_support", | 90 "//ui/views:test_support", |
90 ] | 91 ] |
91 } | 92 } |
OLD | NEW |