| 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 28 matching lines...) Expand all Loading... |
| 39 'includes': [ '../../build/grit_action.gypi' ], | 39 'includes': [ '../../build/grit_action.gypi' ], |
| 40 }, | 40 }, |
| 41 ], | 41 ], |
| 42 'includes': [ '../../build/grit_target.gypi' ], | 42 'includes': [ '../../build/grit_target.gypi' ], |
| 43 }, | 43 }, |
| 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 '../../skia/skia.gyp:skia', | 50 '../../skia/skia.gyp:skia', |
| 50 '../aura/aura.gyp:aura', | 51 '../aura/aura.gyp:aura', |
| 51 '../events/events.gyp:events', | 52 '../events/events.gyp:events', |
| 52 '../events/events.gyp:gesture_detection', | 53 '../events/events.gyp:gesture_detection', |
| 54 '../views/views.gyp:views', |
| 53 '../wm/wm.gyp:wm', | 55 '../wm/wm.gyp:wm', |
| 54 'ui_chromeos_resources', | 56 'ui_chromeos_resources', |
| 55 'ui_chromeos_strings', | 57 'ui_chromeos_strings', |
| 56 ], | 58 ], |
| 57 'defines': [ | 59 'defines': [ |
| 58 'UI_CHROMEOS_IMPLEMENTATION', | 60 'UI_CHROMEOS_IMPLEMENTATION', |
| 59 ], | 61 ], |
| 60 'sources': [ | 62 'sources': [ |
| 61 'network/network_icon.cc', | 63 'network/network_icon.cc', |
| 62 'network/network_icon.h', | 64 'network/network_icon.h', |
| 63 'network/network_icon_animation.cc', | 65 'network/network_icon_animation.cc', |
| 64 'network/network_icon_animation.h', | 66 'network/network_icon_animation.h', |
| 65 'network/network_icon_animation_observer.h', | 67 'network/network_icon_animation_observer.h', |
| 68 'network/network_info.cc', |
| 69 'network/network_info.h', |
| 70 'network/network_list.cc', |
| 71 'network/network_list.h', |
| 72 'network/network_list_delegate.h', |
| 73 |
| 66 'touch_exploration_controller.cc', | 74 'touch_exploration_controller.cc', |
| 67 'touch_exploration_controller.h', | 75 'touch_exploration_controller.h', |
| 68 'user_activity_power_manager_notifier.cc', | 76 'user_activity_power_manager_notifier.cc', |
| 69 'user_activity_power_manager_notifier.h', | 77 'user_activity_power_manager_notifier.h', |
| 70 ], | 78 ], |
| 71 }, | 79 }, |
| 72 ], | 80 ], |
| 73 } | 81 } |
| OLD | NEW |