| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 '../ui/keyboard/keyboard.gyp:keyboard', | 107 '../ui/keyboard/keyboard.gyp:keyboard', |
| 108 '../ui/keyboard/keyboard.gyp:keyboard_resources', | 108 '../ui/keyboard/keyboard.gyp:keyboard_resources', |
| 109 '../third_party/WebKit/public/blink.gyp:blink', | 109 '../third_party/WebKit/public/blink.gyp:blink', |
| 110 '../ui/views/controls/webview/webview.gyp:webview', | 110 '../ui/views/controls/webview/webview.gyp:webview', |
| 111 '../skia/skia.gyp:skia', | 111 '../skia/skia.gyp:skia', |
| 112 ], | 112 ], |
| 113 'defines': [ | 113 'defines': [ |
| 114 'ATHENA_IMPLEMENTATION', | 114 'ATHENA_IMPLEMENTATION', |
| 115 ], | 115 ], |
| 116 'sources': [ | 116 'sources': [ |
| 117 'content/app_activity.cc', |
| 118 'content/app_activity.h', |
| 119 'content/app_activity_proxy.cc', |
| 120 'content/app_activity_proxy.h', |
| 121 'content/app_activity_registry.cc', |
| 122 'content/app_activity_registry.h', |
| 123 'content/app_registry_impl.cc', |
| 124 'content/content_activity_factory.cc', |
| 125 'content/content_app_model_builder.cc', |
| 126 'content/public/app_registry.h', |
| 117 'content/public/content_activity_factory.h', | 127 'content/public/content_activity_factory.h', |
| 118 'content/public/content_app_model_builder.h', | 128 'content/public/content_app_model_builder.h', |
| 119 'content/public/web_contents_view_delegate_creator.h', | 129 'content/public/web_contents_view_delegate_creator.h', |
| 120 'content/content_activity_factory.cc', | |
| 121 'content/content_app_model_builder.cc', | |
| 122 'content/app_activity.h', | |
| 123 'content/app_activity.cc', | |
| 124 'content/render_view_context_menu_impl.cc', | 130 'content/render_view_context_menu_impl.cc', |
| 125 'content/render_view_context_menu_impl.h', | 131 'content/render_view_context_menu_impl.h', |
| 132 'content/web_activity.cc', |
| 126 'content/web_activity.h', | 133 'content/web_activity.h', |
| 127 'content/web_activity.cc', | |
| 128 'content/web_contents_view_delegate_factory_impl.cc', | 134 'content/web_contents_view_delegate_factory_impl.cc', |
| 129 'virtual_keyboard/public/virtual_keyboard_manager.h', | 135 'virtual_keyboard/public/virtual_keyboard_manager.h', |
| 130 'virtual_keyboard/virtual_keyboard_manager_impl.cc', | 136 'virtual_keyboard/virtual_keyboard_manager_impl.cc', |
| 131 ], | 137 ], |
| 132 }, | 138 }, |
| 133 { | 139 { |
| 140 'target_name': 'athena_content_support_lib', |
| 141 'type': 'static_library', |
| 142 'dependencies': [ |
| 143 '../content/content.gyp:content_browser', |
| 144 ], |
| 145 'sources': [ |
| 146 'content/delegate/app_content_delegate.cc', |
| 147 'content/public/app_content_delegate.h', |
| 148 ], |
| 149 }, |
| 150 { |
| 134 'target_name': 'athena_test_support', | 151 'target_name': 'athena_test_support', |
| 135 'type': 'static_library', | 152 'type': 'static_library', |
| 136 'dependencies': [ | 153 'dependencies': [ |
| 137 '../base/base.gyp:test_support_base', | 154 '../base/base.gyp:test_support_base', |
| 138 '../chromeos/chromeos.gyp:chromeos', | 155 '../chromeos/chromeos.gyp:chromeos', |
| 139 '../skia/skia.gyp:skia', | 156 '../skia/skia.gyp:skia', |
| 140 '../testing/gtest.gyp:gtest', | 157 '../testing/gtest.gyp:gtest', |
| 141 '../ui/accessibility/accessibility.gyp:ax_gen', | 158 '../ui/accessibility/accessibility.gyp:ax_gen', |
| 142 '../ui/app_list/app_list.gyp:app_list', | 159 '../ui/app_list/app_list.gyp:app_list', |
| 143 '../ui/aura/aura.gyp:aura_test_support', | 160 '../ui/aura/aura.gyp:aura_test_support', |
| 144 '../ui/base/ui_base.gyp:ui_base_test_support', | 161 '../ui/base/ui_base.gyp:ui_base_test_support', |
| 145 '../ui/compositor/compositor.gyp:compositor_test_support', | 162 '../ui/compositor/compositor.gyp:compositor_test_support', |
| 146 '../ui/views/views.gyp:views', | 163 '../ui/views/views.gyp:views', |
| 147 '../ui/wm/wm.gyp:wm', | 164 '../ui/wm/wm.gyp:wm', |
| 148 '../url/url.gyp:url_lib', | 165 '../url/url.gyp:url_lib', |
| 149 'athena_content_lib', | 166 'athena_content_lib', |
| 150 'athena_lib', | 167 'athena_lib', |
| 151 'resources/athena_resources.gyp:athena_resources', | 168 'resources/athena_resources.gyp:athena_resources', |
| 152 ], | 169 ], |
| 153 'sources': [ | 170 'sources': [ |
| 171 'content/delegate/test_app_content_delegate.cc', |
| 172 'content/public/app_content_delegate.h', |
| 154 'main/athena_launcher.cc', | 173 'main/athena_launcher.cc', |
| 155 'main/athena_launcher.h', | 174 'main/athena_launcher.h', |
| 156 'main/placeholder.cc', | 175 'main/placeholder.cc', |
| 157 'main/placeholder.h', | 176 'main/placeholder.h', |
| 158 'test/athena_test_base.cc', | 177 'test/athena_test_base.cc', |
| 159 'test/athena_test_base.h', | 178 'test/athena_test_base.h', |
| 160 'test/athena_test_helper.cc', | 179 'test/athena_test_helper.cc', |
| 161 'test/athena_test_helper.h', | 180 'test/athena_test_helper.h', |
| 162 'test/sample_activity.cc', | 181 'test/sample_activity.cc', |
| 163 'test/sample_activity.h', | 182 'test/sample_activity.h', |
| 164 'test/sample_activity_factory.cc', | 183 'test/sample_activity_factory.cc', |
| 165 'test/sample_activity_factory.h', | 184 'test/sample_activity_factory.h', |
| 166 'test/test_app_model_builder.cc', | 185 'test/test_app_model_builder.cc', |
| 167 'test/test_app_model_builder.h', | 186 'test/test_app_model_builder.h', |
| 168 ], | 187 ], |
| 169 }, | 188 }, |
| 170 { | 189 { |
| 171 'target_name': 'athena_unittests', | 190 'target_name': 'athena_unittests', |
| 172 'type': 'executable', | 191 'type': 'executable', |
| 173 'dependencies': [ | 192 'dependencies': [ |
| 174 '../testing/gtest.gyp:gtest', | 193 '../testing/gtest.gyp:gtest', |
| 175 '../skia/skia.gyp:skia', | 194 '../skia/skia.gyp:skia', |
| 176 'athena_lib', | 195 'athena_lib', |
| 177 'athena_test_support', | 196 'athena_test_support', |
| 197 'athena_content_lib', |
| 178 'resources/athena_resources.gyp:athena_pak', | 198 'resources/athena_resources.gyp:athena_pak', |
| 179 ], | 199 ], |
| 180 'sources': [ | 200 'sources': [ |
| 181 'test/athena_unittests.cc', | |
| 182 'activity/activity_manager_unittest.cc', | 201 'activity/activity_manager_unittest.cc', |
| 202 'content/app_activity_unittest.cc', |
| 183 'home/home_card_unittest.cc', | 203 'home/home_card_unittest.cc', |
| 184 'input/accelerator_manager_unittest.cc', | 204 'input/accelerator_manager_unittest.cc', |
| 185 'screen/screen_manager_unittest.cc', | 205 'screen/screen_manager_unittest.cc', |
| 206 'test/athena_unittests.cc', |
| 186 'wm/split_view_controller_unittest.cc', | 207 'wm/split_view_controller_unittest.cc', |
| 187 'wm/window_list_provider_impl_unittest.cc', | 208 'wm/window_list_provider_impl_unittest.cc', |
| 188 'wm/window_manager_unittest.cc', | 209 'wm/window_manager_unittest.cc', |
| 189 ], | 210 ], |
| 190 } | 211 } |
| 191 ], | 212 ], |
| 192 } | 213 } |
| 193 | 214 |
| OLD | NEW |