| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "user_activity_power_manager_notifier.cc", | 42 "user_activity_power_manager_notifier.cc", |
| 43 "user_activity_power_manager_notifier.h", | 43 "user_activity_power_manager_notifier.h", |
| 44 ] | 44 ] |
| 45 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] | 45 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] |
| 46 deps = [ | 46 deps = [ |
| 47 "//base", | 47 "//base", |
| 48 "//base/third_party/dynamic_annotations", | 48 "//base/third_party/dynamic_annotations", |
| 49 "//chromeos:chromeos", | 49 "//chromeos:chromeos", |
| 50 "//chromeos:power_manager_proto", | 50 "//chromeos:power_manager_proto", |
| 51 "//components/device_event_log", | 51 "//components/device_event_log", |
| 52 "//components/onc", |
| 52 "//skia", | 53 "//skia", |
| 53 "//ui/aura", | 54 "//ui/aura", |
| 54 "//ui/base", | 55 "//ui/base", |
| 55 "//ui/base/ime", | 56 "//ui/base/ime", |
| 56 "//ui/chromeos/resources", | 57 "//ui/chromeos/resources", |
| 57 "//ui/chromeos/strings", | 58 "//ui/chromeos/strings", |
| 58 "//ui/events", | 59 "//ui/events", |
| 59 "//ui/events:gesture_detection", | 60 "//ui/events:gesture_detection", |
| 60 "//ui/gfx", | 61 "//ui/gfx", |
| 61 "//ui/gfx/geometry", | 62 "//ui/gfx/geometry", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 85 "//ui/aura:test_support", | 86 "//ui/aura:test_support", |
| 86 "//ui/compositor", | 87 "//ui/compositor", |
| 87 "//ui/events:test_support", | 88 "//ui/events:test_support", |
| 88 "//ui/gl", | 89 "//ui/gl", |
| 89 "//ui/message_center", | 90 "//ui/message_center", |
| 90 "//ui/resources:ui_test_pak", | 91 "//ui/resources:ui_test_pak", |
| 91 "//ui/views", | 92 "//ui/views", |
| 92 "//ui/views:test_support", | 93 "//ui/views:test_support", |
| 93 ] | 94 ] |
| 94 } | 95 } |
| OLD | NEW |