| 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 15 matching lines...) Expand all Loading... |
| 26 "network/network_icon.cc", | 26 "network/network_icon.cc", |
| 27 "network/network_icon.h", | 27 "network/network_icon.h", |
| 28 "network/network_icon_animation.cc", | 28 "network/network_icon_animation.cc", |
| 29 "network/network_icon_animation.h", | 29 "network/network_icon_animation.h", |
| 30 "network/network_icon_animation_observer.h", | 30 "network/network_icon_animation_observer.h", |
| 31 "network/network_info.cc", | 31 "network/network_info.cc", |
| 32 "network/network_info.h", | 32 "network/network_info.h", |
| 33 "network/network_list.cc", | 33 "network/network_list.cc", |
| 34 "network/network_list.h", | 34 "network/network_list.h", |
| 35 "network/network_list_delegate.h", | 35 "network/network_list_delegate.h", |
| 36 "network/network_list_view_base.cc", |
| 37 "network/network_list_view_base.h", |
| 36 "network/network_state_notifier.cc", | 38 "network/network_state_notifier.cc", |
| 37 "network/network_state_notifier.h", | 39 "network/network_state_notifier.h", |
| 38 "touch_exploration_controller.cc", | 40 "touch_exploration_controller.cc", |
| 39 "touch_exploration_controller.h", | 41 "touch_exploration_controller.h", |
| 40 "user_activity_power_manager_notifier.cc", | 42 "user_activity_power_manager_notifier.cc", |
| 41 "user_activity_power_manager_notifier.h", | 43 "user_activity_power_manager_notifier.h", |
| 42 ] | 44 ] |
| 43 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] | 45 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] |
| 44 deps = [ | 46 deps = [ |
| 45 "//base", | 47 "//base", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "//ui/aura:test_support", | 85 "//ui/aura:test_support", |
| 84 "//ui/compositor", | 86 "//ui/compositor", |
| 85 "//ui/events:test_support", | 87 "//ui/events:test_support", |
| 86 "//ui/gl", | 88 "//ui/gl", |
| 87 "//ui/message_center", | 89 "//ui/message_center", |
| 88 "//ui/resources:ui_test_pak", | 90 "//ui/resources:ui_test_pak", |
| 89 "//ui/views", | 91 "//ui/views", |
| 90 "//ui/views:test_support", | 92 "//ui/views:test_support", |
| 91 ] | 93 ] |
| 92 } | 94 } |
| OLD | NEW |