Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Side by Side Diff: athena/athena.gyp

Issue 505273002: Move app_shell specific impl from athena_lib to athena_shell_lib (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
100 { 100 {
101 'target_name': 'athena_content_lib', 101 'target_name': 'athena_content_lib',
102 'type': 'static_library', 102 'type': 'static_library',
103 'dependencies': [ 103 'dependencies': [
104 'athena_lib', 104 'athena_lib',
105 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 105 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
106 '../components/components.gyp:renderer_context_menu', 106 '../components/components.gyp:renderer_context_menu',
107 '../components/components.gyp:web_modal', 107 '../components/components.gyp:web_modal',
108 '../extensions/extensions.gyp:extensions_browser', 108 '../extensions/extensions.gyp:extensions_browser',
109 '../extensions/extensions.gyp:extensions_common', 109 '../extensions/extensions.gyp:extensions_common',
110 '../extensions/shell/app_shell.gyp:app_shell_lib',
111 '../content/content.gyp:content_browser', 110 '../content/content.gyp:content_browser',
112 '../ui/app_list/app_list.gyp:app_list', 111 '../ui/app_list/app_list.gyp:app_list',
113 '../ui/keyboard/keyboard.gyp:keyboard', 112 '../ui/keyboard/keyboard.gyp:keyboard',
114 '../ui/keyboard/keyboard.gyp:keyboard_resources', 113 '../ui/keyboard/keyboard.gyp:keyboard_resources',
115 '../third_party/WebKit/public/blink.gyp:blink', 114 '../third_party/WebKit/public/blink.gyp:blink',
116 '../ui/views/controls/webview/webview.gyp:webview', 115 '../ui/views/controls/webview/webview.gyp:webview',
117 '../skia/skia.gyp:skia', 116 '../skia/skia.gyp:skia',
118 ], 117 ],
119 'sources': [ 118 'sources': [
120 'content/app_activity.cc', 119 'content/app_activity.cc',
121 'content/app_activity.h', 120 'content/app_activity.h',
122 'content/app_activity_proxy.cc', 121 'content/app_activity_proxy.cc',
123 'content/app_activity_proxy.h', 122 'content/app_activity_proxy.h',
124 'content/app_activity_registry.cc', 123 'content/app_activity_registry.cc',
125 'content/app_activity_registry.h', 124 'content/app_activity_registry.h',
126 'content/app_registry_impl.cc', 125 'content/app_registry_impl.cc',
127 'content/content_activity_factory.cc', 126 'content/content_activity_factory.cc',
128 'content/content_app_model_builder.cc', 127 'content/content_app_model_builder.cc',
129 'content/delegate/app_content_control_delegate_impl.cc', 128 'content/delegate/app_content_control_delegate_impl.cc',
130 'content/public/app_content_control_delegate.h', 129 'content/public/app_content_control_delegate.h',
131 'content/public/app_registry.h', 130 'content/public/app_registry.h',
132 'content/public/content_activity_factory.h', 131 'content/content_activity_factory.h',
132 'content/public/content_activity_factory_creator.h',
133 'content/public/content_app_model_builder.h', 133 'content/public/content_app_model_builder.h',
134 'content/public/web_contents_view_delegate_creator.h', 134 'content/public/web_contents_view_delegate_creator.h',
135 'content/render_view_context_menu_impl.cc', 135 'content/render_view_context_menu_impl.cc',
136 'content/render_view_context_menu_impl.h', 136 'content/render_view_context_menu_impl.h',
137 'content/web_activity.cc', 137 'content/web_activity.cc',
138 'content/web_activity.h', 138 'content/web_activity.h',
139 'content/web_contents_view_delegate_factory_impl.cc', 139 'content/web_contents_view_delegate_factory_impl.cc',
140 'extensions/public/extensions_delegate.h', 140 'extensions/public/extensions_delegate.h',
141 'extensions/extensions_delegate.cc', 141 'extensions/extensions_delegate.cc',
142 'virtual_keyboard/public/virtual_keyboard_manager.h', 142 'virtual_keyboard/public/virtual_keyboard_manager.h',
143 'virtual_keyboard/virtual_keyboard_manager_impl.cc', 143 'virtual_keyboard/virtual_keyboard_manager_impl.cc',
144 ], 144 ],
145 }, 145 },
146 { 146 {
147 'target_name': 'athena_app_shell_lib', 147 'target_name': 'athena_app_shell_lib',
148 'type': 'static_library', 148 'type': 'static_library',
149 'dependencies': [ 149 'dependencies': [
150 '../extensions/shell/app_shell.gyp:app_shell_lib', 150 '../extensions/shell/app_shell.gyp:app_shell_lib',
151 ], 151 ],
152 'sources': [ 152 'sources': [
153 'content/shell/content_activity_factory.cc',
154 'content/shell/shell_app_activity.cc',
155 'content/shell/shell_app_activity.h',
153 'extensions/shell/extensions_delegate_impl.cc', 156 'extensions/shell/extensions_delegate_impl.cc',
154 ], 157 ],
155 }, 158 },
156 { 159 {
157 'target_name': 'athena_test_support', 160 'target_name': 'athena_test_support',
158 'type': 'static_library', 161 'type': 'static_library',
159 'dependencies': [ 162 'dependencies': [
160 '../base/base.gyp:test_support_base', 163 '../base/base.gyp:test_support_base',
161 '../chromeos/chromeos.gyp:chromeos', 164 '../chromeos/chromeos.gyp:chromeos',
162 '../skia/skia.gyp:skia', 165 '../skia/skia.gyp:skia',
(...skipping 27 matching lines...) Expand all
190 'wm/test/window_manager_impl_test_api.cc', 193 'wm/test/window_manager_impl_test_api.cc',
191 'wm/test/window_manager_impl_test_api.h', 194 'wm/test/window_manager_impl_test_api.h',
192 ], 195 ],
193 }, 196 },
194 { 197 {
195 'target_name': 'athena_unittests', 198 'target_name': 'athena_unittests',
196 'type': 'executable', 199 'type': 'executable',
197 'dependencies': [ 200 'dependencies': [
198 '../skia/skia.gyp:skia', 201 '../skia/skia.gyp:skia',
199 '../testing/gtest.gyp:gtest', 202 '../testing/gtest.gyp:gtest',
203 'athena_app_shell_lib',
200 'athena_lib', 204 'athena_lib',
201 'athena_test_support', 205 'athena_test_support',
202 'main/athena_main.gyp:athena_main_lib', 206 'main/athena_main.gyp:athena_main_lib',
203 'resources/athena_resources.gyp:athena_pak', 207 'resources/athena_resources.gyp:athena_pak',
204 ], 208 ],
205 'sources': [ 209 'sources': [
206 'activity/activity_manager_unittest.cc', 210 'activity/activity_manager_unittest.cc',
207 'common/fill_layout_manager_unittest.cc', 211 'common/fill_layout_manager_unittest.cc',
208 'content/app_activity_unittest.cc', 212 'content/app_activity_unittest.cc',
209 'home/home_card_unittest.cc', 213 'home/home_card_unittest.cc',
210 'input/accelerator_manager_unittest.cc', 214 'input/accelerator_manager_unittest.cc',
211 'screen/screen_manager_unittest.cc', 215 'screen/screen_manager_unittest.cc',
212 'test/athena_unittests.cc', 216 'test/athena_unittests.cc',
213 'wm/split_view_controller_unittest.cc', 217 'wm/split_view_controller_unittest.cc',
214 'wm/window_list_provider_impl_unittest.cc', 218 'wm/window_list_provider_impl_unittest.cc',
215 'wm/window_manager_unittest.cc', 219 'wm/window_manager_unittest.cc',
216 ], 220 ],
217 } 221 }
218 ], 222 ],
219 } 223 }
220 224
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698