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 { |
11 'target_name': 'athena_lib', | 11 'target_name': 'athena_lib', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../chromeos/chromeos.gyp:power_manager_proto', |
14 '../ui/aura/aura.gyp:aura', | 15 '../ui/aura/aura.gyp:aura', |
15 '../ui/app_list/app_list.gyp:app_list', | 16 '../ui/app_list/app_list.gyp:app_list', |
16 '../ui/views/views.gyp:views', | 17 '../ui/views/views.gyp:views', |
17 '../ui/accessibility/accessibility.gyp:ax_gen', | 18 '../ui/accessibility/accessibility.gyp:ax_gen', |
18 '../skia/skia.gyp:skia', | 19 '../skia/skia.gyp:skia', |
19 ], | 20 ], |
20 'defines': [ | 21 'defines': [ |
21 'ATHENA_IMPLEMENTATION', | 22 'ATHENA_IMPLEMENTATION', |
22 ], | 23 ], |
23 'sources': [ | 24 'sources': [ |
(...skipping 23 matching lines...) Expand all Loading... |
47 'input/input_manager_impl.cc', | 48 'input/input_manager_impl.cc', |
48 'input/public/input_manager.h', | 49 'input/public/input_manager.h', |
49 'input/public/accelerator_manager.h', | 50 'input/public/accelerator_manager.h', |
50 'screen/background_controller.cc', | 51 'screen/background_controller.cc', |
51 'screen/background_controller.h', | 52 'screen/background_controller.h', |
52 'screen/public/screen_manager.h', | 53 'screen/public/screen_manager.h', |
53 'screen/screen_accelerator_handler.cc', | 54 'screen/screen_accelerator_handler.cc', |
54 'screen/screen_accelerator_handler.h', | 55 'screen/screen_accelerator_handler.h', |
55 'screen/screen_manager_impl.cc', | 56 'screen/screen_manager_impl.cc', |
56 'wm/public/window_manager.h', | 57 'wm/public/window_manager.h', |
| 58 'wm/debug/debug_window.cc', |
| 59 'wm/debug/debug_window.h', |
57 'wm/window_manager_impl.cc', | 60 'wm/window_manager_impl.cc', |
58 'wm/window_overview_mode.cc', | 61 'wm/window_overview_mode.cc', |
59 'wm/window_overview_mode.h', | 62 'wm/window_overview_mode.h', |
60 ], | 63 ], |
61 }, | 64 }, |
62 { | 65 { |
63 'target_name': 'athena_content_lib', | 66 'target_name': 'athena_content_lib', |
64 'type': 'static_library', | 67 'type': 'static_library', |
65 'dependencies': [ | 68 'dependencies': [ |
66 'athena_lib', | 69 'athena_lib', |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 'sources': [ | 144 'sources': [ |
142 'test/athena_unittests.cc', | 145 'test/athena_unittests.cc', |
143 'activity/activity_manager_unittest.cc', | 146 'activity/activity_manager_unittest.cc', |
144 'input/accelerator_manager_unittest.cc', | 147 'input/accelerator_manager_unittest.cc', |
145 'wm/window_manager_unittest.cc', | 148 'wm/window_manager_unittest.cc', |
146 ], | 149 ], |
147 } | 150 } |
148 ], | 151 ], |
149 } | 152 } |
150 | 153 |
OLD | NEW |