| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'home/public/app_model_builder.h', | 58 'home/public/app_model_builder.h', |
| 59 'home/public/home_card.h', | 59 'home/public/home_card.h', |
| 60 'input/accelerator_manager_impl.cc', | 60 'input/accelerator_manager_impl.cc', |
| 61 'input/accelerator_manager_impl.h', | 61 'input/accelerator_manager_impl.h', |
| 62 'input/input_manager_impl.cc', | 62 'input/input_manager_impl.cc', |
| 63 'input/public/accelerator_manager.h', | 63 'input/public/accelerator_manager.h', |
| 64 'input/public/input_manager.h', | 64 'input/public/input_manager.h', |
| 65 'screen/background_controller.cc', | 65 'screen/background_controller.cc', |
| 66 'screen/background_controller.h', | 66 'screen/background_controller.h', |
| 67 'screen/public/screen_manager.h', | 67 'screen/public/screen_manager.h', |
| 68 'screen/public/screen_manager_delegate.h', |
| 68 'screen/screen_accelerator_handler.cc', | 69 'screen/screen_accelerator_handler.cc', |
| 69 'screen/screen_accelerator_handler.h', | 70 'screen/screen_accelerator_handler.h', |
| 70 'screen/screen_manager_impl.cc', | 71 'screen/screen_manager_impl.cc', |
| 71 'system/device_socket_listener.cc', | 72 'system/device_socket_listener.cc', |
| 72 'system/device_socket_listener.h', | 73 'system/device_socket_listener.h', |
| 73 'system/orientation_controller.cc', | 74 'system/orientation_controller.cc', |
| 74 'system/orientation_controller.h', | 75 'system/orientation_controller.h', |
| 75 'system/power_button_controller.cc', | 76 'system/power_button_controller.cc', |
| 76 'system/power_button_controller.h', | 77 'system/power_button_controller.h', |
| 77 'system/public/system_ui.h', | 78 'system/public/system_ui.h', |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 'test/athena_test_base.cc', | 155 'test/athena_test_base.cc', |
| 155 'test/athena_test_base.h', | 156 'test/athena_test_base.h', |
| 156 'test/athena_test_helper.cc', | 157 'test/athena_test_helper.cc', |
| 157 'test/athena_test_helper.h', | 158 'test/athena_test_helper.h', |
| 158 'test/sample_activity.cc', | 159 'test/sample_activity.cc', |
| 159 'test/sample_activity.h', | 160 'test/sample_activity.h', |
| 160 'test/sample_activity_factory.cc', | 161 'test/sample_activity_factory.cc', |
| 161 'test/sample_activity_factory.h', | 162 'test/sample_activity_factory.h', |
| 162 'test/test_app_model_builder.cc', | 163 'test/test_app_model_builder.cc', |
| 163 'test/test_app_model_builder.h', | 164 'test/test_app_model_builder.h', |
| 165 'test/test_screen_manager_delegate.cc', |
| 166 'test/test_screen_manager_delegate.h', |
| 164 ], | 167 ], |
| 165 }, | 168 }, |
| 166 { | 169 { |
| 167 'target_name': 'athena_unittests', | 170 'target_name': 'athena_unittests', |
| 168 'type': 'executable', | 171 'type': 'executable', |
| 169 'dependencies': [ | 172 'dependencies': [ |
| 170 '../skia/skia.gyp:skia', | 173 '../skia/skia.gyp:skia', |
| 171 '../testing/gtest.gyp:gtest', | 174 '../testing/gtest.gyp:gtest', |
| 172 'athena_lib', | 175 'athena_lib', |
| 173 'athena_test_support', | 176 'athena_test_support', |
| 174 'main/athena_main.gyp:athena_main_lib', | 177 'main/athena_main.gyp:athena_main_lib', |
| 175 'resources/athena_resources.gyp:athena_pak', | 178 'resources/athena_resources.gyp:athena_pak', |
| 176 ], | 179 ], |
| 177 'sources': [ | 180 'sources': [ |
| 178 'test/athena_unittests.cc', | 181 'test/athena_unittests.cc', |
| 179 'activity/activity_manager_unittest.cc', | 182 'activity/activity_manager_unittest.cc', |
| 180 'home/home_card_unittest.cc', | 183 'home/home_card_unittest.cc', |
| 181 'input/accelerator_manager_unittest.cc', | 184 'input/accelerator_manager_unittest.cc', |
| 182 'screen/screen_manager_unittest.cc', | 185 'screen/screen_manager_unittest.cc', |
| 183 'wm/split_view_controller_unittest.cc', | 186 'wm/split_view_controller_unittest.cc', |
| 184 'wm/window_list_provider_impl_unittest.cc', | 187 'wm/window_list_provider_impl_unittest.cc', |
| 185 'wm/window_manager_unittest.cc', | 188 'wm/window_manager_unittest.cc', |
| 186 ], | 189 ], |
| 187 } | 190 } |
| 188 ], | 191 ], |
| 189 } | 192 } |
| 190 | 193 |
| OLD | NEW |