| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 'screen/public/screen_manager.h', | 65 'screen/public/screen_manager.h', |
| 66 'screen/screen_accelerator_handler.cc', | 66 'screen/screen_accelerator_handler.cc', |
| 67 'screen/screen_accelerator_handler.h', | 67 'screen/screen_accelerator_handler.h', |
| 68 'screen/screen_manager_impl.cc', | 68 'screen/screen_manager_impl.cc', |
| 69 'system/power_button_controller.cc', | 69 'system/power_button_controller.cc', |
| 70 'system/power_button_controller.h', | 70 'system/power_button_controller.h', |
| 71 'system/public/system_ui.h', | 71 'system/public/system_ui.h', |
| 72 'system/system_ui_impl.cc', | 72 'system/system_ui_impl.cc', |
| 73 'wm/bezel_controller.cc', | 73 'wm/bezel_controller.cc', |
| 74 'wm/bezel_controller.h', | 74 'wm/bezel_controller.h', |
| 75 'wm/mru_window_tracker.cc', | |
| 76 'wm/mru_window_tracker.h', | |
| 77 'wm/overview_toolbar.cc', | 75 'wm/overview_toolbar.cc', |
| 78 'wm/overview_toolbar.h', | 76 'wm/overview_toolbar.h', |
| 79 'wm/public/window_list_provider.h', | 77 'wm/public/window_list_provider.h', |
| 80 'wm/public/window_manager.h', | 78 'wm/public/window_manager.h', |
| 81 'wm/public/window_manager_observer.h', | 79 'wm/public/window_manager_observer.h', |
| 82 'wm/split_view_controller.cc', | 80 'wm/split_view_controller.cc', |
| 83 'wm/split_view_controller.h', | 81 'wm/split_view_controller.h', |
| 84 'wm/title_drag_controller.cc', | 82 'wm/title_drag_controller.cc', |
| 85 'wm/title_drag_controller.h', | 83 'wm/title_drag_controller.h', |
| 84 'wm/window_list_provider_impl.cc', |
| 85 'wm/window_list_provider_impl.h', |
| 86 'wm/window_manager_impl.cc', | 86 'wm/window_manager_impl.cc', |
| 87 'wm/window_overview_mode.cc', | 87 'wm/window_overview_mode.cc', |
| 88 'wm/window_overview_mode.h', | 88 'wm/window_overview_mode.h', |
| 89 ], | 89 ], |
| 90 }, | 90 }, |
| 91 { | 91 { |
| 92 'target_name': 'athena_content_lib', | 92 'target_name': 'athena_content_lib', |
| 93 'type': 'static_library', | 93 'type': 'static_library', |
| 94 'dependencies': [ | 94 'dependencies': [ |
| 95 'athena_lib', | 95 'athena_lib', |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 'athena_lib', | 169 'athena_lib', |
| 170 'athena_test_support', | 170 'athena_test_support', |
| 171 'resources/athena_resources.gyp:athena_pak', | 171 'resources/athena_resources.gyp:athena_pak', |
| 172 ], | 172 ], |
| 173 'sources': [ | 173 'sources': [ |
| 174 'test/athena_unittests.cc', | 174 'test/athena_unittests.cc', |
| 175 'activity/activity_manager_unittest.cc', | 175 'activity/activity_manager_unittest.cc', |
| 176 'home/home_card_unittest.cc', | 176 'home/home_card_unittest.cc', |
| 177 'input/accelerator_manager_unittest.cc', | 177 'input/accelerator_manager_unittest.cc', |
| 178 'screen/screen_manager_unittest.cc', | 178 'screen/screen_manager_unittest.cc', |
| 179 'wm/window_list_provider_impl_unittest.cc', |
| 179 'wm/window_manager_unittest.cc', | 180 'wm/window_manager_unittest.cc', |
| 180 ], | 181 ], |
| 181 } | 182 } |
| 182 ], | 183 ], |
| 183 } | 184 } |
| 184 | 185 |
| OLD | NEW |