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