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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 { | 44 { |
45 'target_name': 'ui_chromeos', | 45 'target_name': 'ui_chromeos', |
46 'type': '<(component)', | 46 'type': '<(component)', |
47 'dependencies': [ | 47 'dependencies': [ |
48 '../../base/base.gyp:base', | 48 '../../base/base.gyp:base', |
49 '../../chromeos/chromeos.gyp:power_manager_proto', | 49 '../../chromeos/chromeos.gyp:power_manager_proto', |
50 '../../skia/skia.gyp:skia', | 50 '../../skia/skia.gyp:skia', |
51 '../aura/aura.gyp:aura', | 51 '../aura/aura.gyp:aura', |
52 '../events/events.gyp:events', | 52 '../events/events.gyp:events', |
53 '../events/events.gyp:gesture_detection', | 53 '../events/events.gyp:gesture_detection', |
| 54 '../message_center/message_center.gyp:message_center', |
54 '../views/views.gyp:views', | 55 '../views/views.gyp:views', |
55 '../wm/wm.gyp:wm', | 56 '../wm/wm.gyp:wm', |
56 'ui_chromeos_resources', | 57 'ui_chromeos_resources', |
57 'ui_chromeos_strings', | 58 'ui_chromeos_strings', |
58 ], | 59 ], |
59 'defines': [ | 60 'defines': [ |
60 'UI_CHROMEOS_IMPLEMENTATION', | 61 'UI_CHROMEOS_IMPLEMENTATION', |
61 ], | 62 ], |
62 'sources': [ | 63 'sources': [ |
| 64 'network/network_connect.cc', |
| 65 'network/network_connect.h', |
63 'network/network_icon.cc', | 66 'network/network_icon.cc', |
64 'network/network_icon.h', | 67 'network/network_icon.h', |
65 'network/network_icon_animation.cc', | 68 'network/network_icon_animation.cc', |
66 'network/network_icon_animation.h', | 69 'network/network_icon_animation.h', |
67 'network/network_icon_animation_observer.h', | 70 'network/network_icon_animation_observer.h', |
68 'network/network_info.cc', | 71 'network/network_info.cc', |
69 'network/network_info.h', | 72 'network/network_info.h', |
70 'network/network_list.cc', | 73 'network/network_list.cc', |
71 'network/network_list.h', | 74 'network/network_list.h', |
72 'network/network_list_delegate.h', | 75 'network/network_list_delegate.h', |
73 | 76 'network/network_state_notifier.cc', |
| 77 'network/network_state_notifier.h', |
74 'touch_exploration_controller.cc', | 78 'touch_exploration_controller.cc', |
75 'touch_exploration_controller.h', | 79 'touch_exploration_controller.h', |
76 'user_activity_power_manager_notifier.cc', | 80 'user_activity_power_manager_notifier.cc', |
77 'user_activity_power_manager_notifier.h', | 81 'user_activity_power_manager_notifier.h', |
78 ], | 82 ], |
79 }, | 83 }, |
80 ], | 84 ], |
81 } | 85 } |
OLD | NEW |