| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 ], | 79 ], |
| 80 'sources': [ | 80 'sources': [ |
| 81 'content/public/content_activity_factory.h', | 81 'content/public/content_activity_factory.h', |
| 82 'content/public/content_app_model_builder.h', | 82 'content/public/content_app_model_builder.h', |
| 83 'content/content_activity_factory.cc', | 83 'content/content_activity_factory.cc', |
| 84 'content/content_app_model_builder.cc', | 84 'content/content_app_model_builder.cc', |
| 85 'content/app_activity.h', | 85 'content/app_activity.h', |
| 86 'content/app_activity.cc', | 86 'content/app_activity.cc', |
| 87 'content/web_activity.h', | 87 'content/web_activity.h', |
| 88 'content/web_activity.cc', | 88 'content/web_activity.cc', |
| 89 'virtual_keyboard/public/virtual_keyboard_bindings.h', | |
| 90 'virtual_keyboard/public/virtual_keyboard_manager.h', | 89 'virtual_keyboard/public/virtual_keyboard_manager.h', |
| 91 'virtual_keyboard/virtual_keyboard_bindings_impl.cc', | |
| 92 'virtual_keyboard/virtual_keyboard_manager_impl.cc', | 90 'virtual_keyboard/virtual_keyboard_manager_impl.cc', |
| 93 'virtual_keyboard/vk_message_handler.cc', | |
| 94 'virtual_keyboard/vk_message_handler.h', | |
| 95 'virtual_keyboard/vk_webui_controller.cc', | |
| 96 'virtual_keyboard/vk_webui_controller.h', | |
| 97 ], | 91 ], |
| 98 }, | 92 }, |
| 99 { | 93 { |
| 100 'target_name': 'athena_test_support', | 94 'target_name': 'athena_test_support', |
| 101 'type': 'static_library', | 95 'type': 'static_library', |
| 102 'dependencies': [ | 96 'dependencies': [ |
| 103 '../base/base.gyp:test_support_base', | 97 '../base/base.gyp:test_support_base', |
| 104 '../skia/skia.gyp:skia', | 98 '../skia/skia.gyp:skia', |
| 105 '../testing/gtest.gyp:gtest', | 99 '../testing/gtest.gyp:gtest', |
| 106 '../ui/accessibility/accessibility.gyp:ax_gen', | 100 '../ui/accessibility/accessibility.gyp:ax_gen', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 'sources': [ | 136 'sources': [ |
| 143 'test/athena_unittests.cc', | 137 'test/athena_unittests.cc', |
| 144 'activity/activity_manager_unittest.cc', | 138 'activity/activity_manager_unittest.cc', |
| 145 'input/accelerator_manager_unittest.cc', | 139 'input/accelerator_manager_unittest.cc', |
| 146 'wm/window_manager_unittest.cc', | 140 'wm/window_manager_unittest.cc', |
| 147 ], | 141 ], |
| 148 } | 142 } |
| 149 ], | 143 ], |
| 150 } | 144 } |
| 151 | 145 |
| OLD | NEW |