| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 'input/accelerator_manager_impl.h', | 55 'input/accelerator_manager_impl.h', |
| 56 'input/input_manager_impl.cc', | 56 'input/input_manager_impl.cc', |
| 57 'input/public/input_manager.h', | 57 'input/public/input_manager.h', |
| 58 'input/public/accelerator_manager.h', | 58 'input/public/accelerator_manager.h', |
| 59 'screen/background_controller.cc', | 59 'screen/background_controller.cc', |
| 60 'screen/background_controller.h', | 60 'screen/background_controller.h', |
| 61 'screen/public/screen_manager.h', | 61 'screen/public/screen_manager.h', |
| 62 'screen/screen_accelerator_handler.cc', | 62 'screen/screen_accelerator_handler.cc', |
| 63 'screen/screen_accelerator_handler.h', | 63 'screen/screen_accelerator_handler.h', |
| 64 'screen/screen_manager_impl.cc', | 64 'screen/screen_manager_impl.cc', |
| 65 'wm/bezel_controller.cc', |
| 66 'wm/bezel_controller.h', |
| 67 'wm/coordinate_conversion.cc', |
| 68 'wm/coordinate_conversion.h', |
| 65 'wm/public/window_manager.h', | 69 'wm/public/window_manager.h', |
| 66 'wm/public/window_manager_observer.h', | 70 'wm/public/window_manager_observer.h', |
| 67 'wm/bezel_controller.cc', | |
| 68 'wm/bezel_controller.h', | |
| 69 'wm/split_view_controller.cc', | 71 'wm/split_view_controller.cc', |
| 70 'wm/split_view_controller.h', | 72 'wm/split_view_controller.h', |
| 71 'wm/window_manager_impl.cc', | 73 'wm/window_manager_impl.cc', |
| 72 'wm/window_overview_mode.cc', | 74 'wm/window_overview_mode.cc', |
| 73 'wm/window_overview_mode.h', | 75 'wm/window_overview_mode.h', |
| 76 'wm/window_stack_provider.h', |
| 74 ], | 77 ], |
| 75 }, | 78 }, |
| 76 { | 79 { |
| 77 'target_name': 'athena_content_lib', | 80 'target_name': 'athena_content_lib', |
| 78 'type': 'static_library', | 81 'type': 'static_library', |
| 79 'dependencies': [ | 82 'dependencies': [ |
| 80 'athena_lib', | 83 'athena_lib', |
| 81 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 84 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 82 '../content/content.gyp:content_browser', | 85 '../content/content.gyp:content_browser', |
| 83 '../ui/app_list/app_list.gyp:app_list', | 86 '../ui/app_list/app_list.gyp:app_list', |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 'sources': [ | 159 'sources': [ |
| 157 'test/athena_unittests.cc', | 160 'test/athena_unittests.cc', |
| 158 'activity/activity_manager_unittest.cc', | 161 'activity/activity_manager_unittest.cc', |
| 159 'input/accelerator_manager_unittest.cc', | 162 'input/accelerator_manager_unittest.cc', |
| 160 'wm/window_manager_unittest.cc', | 163 'wm/window_manager_unittest.cc', |
| 161 ], | 164 ], |
| 162 } | 165 } |
| 163 ], | 166 ], |
| 164 } | 167 } |
| 165 | 168 |
| OLD | NEW |