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

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
« no previous file with comments | « athena/activity/public/activity_factory.h ('k') | athena/content/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 { 104 {
105 'target_name': 'athena_content_lib', 105 'target_name': 'athena_content_lib',
106 'type': 'static_library', 106 'type': 'static_library',
107 'dependencies': [ 107 'dependencies': [
108 'athena_lib', 108 'athena_lib',
109 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 109 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
110 '../components/components.gyp:renderer_context_menu', 110 '../components/components.gyp:renderer_context_menu',
111 '../components/components.gyp:web_modal', 111 '../components/components.gyp:web_modal',
112 '../extensions/extensions.gyp:extensions_browser', 112 '../extensions/extensions.gyp:extensions_browser',
113 '../extensions/extensions.gyp:extensions_common', 113 '../extensions/extensions.gyp:extensions_common',
114 '../extensions/shell/app_shell.gyp:app_shell_lib',
115 '../content/content.gyp:content_browser', 114 '../content/content.gyp:content_browser',
116 '../ui/app_list/app_list.gyp:app_list', 115 '../ui/app_list/app_list.gyp:app_list',
117 '../ui/keyboard/keyboard.gyp:keyboard', 116 '../ui/keyboard/keyboard.gyp:keyboard',
118 '../ui/keyboard/keyboard.gyp:keyboard_resources', 117 '../ui/keyboard/keyboard.gyp:keyboard_resources',
119 '../third_party/WebKit/public/blink.gyp:blink', 118 '../third_party/WebKit/public/blink.gyp:blink',
120 '../ui/views/controls/webview/webview.gyp:webview', 119 '../ui/views/controls/webview/webview.gyp:webview',
121 '../skia/skia.gyp:skia', 120 '../skia/skia.gyp:skia',
122 ], 121 ],
123 'sources': [ 122 'sources': [
124 'content/app_activity.cc', 123 'content/app_activity.cc',
125 'content/app_activity.h', 124 'content/app_activity.h',
126 'content/app_activity_proxy.cc', 125 'content/app_activity_proxy.cc',
127 'content/app_activity_proxy.h', 126 'content/app_activity_proxy.h',
128 'content/app_activity_registry.cc', 127 'content/app_activity_registry.cc',
129 'content/app_activity_registry.h', 128 'content/app_activity_registry.h',
130 'content/app_registry_impl.cc', 129 'content/app_registry_impl.cc',
131 'content/content_activity_factory.cc', 130 'content/content_activity_factory.cc',
132 'content/content_app_model_builder.cc', 131 'content/content_app_model_builder.cc',
133 'content/delegate/app_content_control_delegate_impl.cc', 132 'content/delegate/app_content_control_delegate_impl.cc',
134 'content/public/app_content_control_delegate.h', 133 'content/public/app_content_control_delegate.h',
135 'content/public/app_registry.h', 134 'content/public/app_registry.h',
136 'content/public/content_activity_factory.h', 135 'content/content_activity_factory.h',
136 'content/public/content_activity_factory_creator.h',
137 'content/public/content_app_model_builder.h', 137 'content/public/content_app_model_builder.h',
138 'content/public/web_contents_view_delegate_creator.h', 138 'content/public/web_contents_view_delegate_creator.h',
139 'content/render_view_context_menu_impl.cc', 139 'content/render_view_context_menu_impl.cc',
140 'content/render_view_context_menu_impl.h', 140 'content/render_view_context_menu_impl.h',
141 'content/web_activity.cc', 141 'content/web_activity.cc',
142 'content/web_activity.h', 142 'content/web_activity.h',
143 'content/web_contents_view_delegate_factory_impl.cc', 143 'content/web_contents_view_delegate_factory_impl.cc',
144 'extensions/public/extensions_delegate.h', 144 'extensions/public/extensions_delegate.h',
145 'extensions/extensions_delegate.cc', 145 'extensions/extensions_delegate.cc',
146 'virtual_keyboard/public/virtual_keyboard_manager.h', 146 'virtual_keyboard/public/virtual_keyboard_manager.h',
147 'virtual_keyboard/virtual_keyboard_manager_impl.cc', 147 'virtual_keyboard/virtual_keyboard_manager_impl.cc',
148 ], 148 ],
149 }, 149 },
150 { 150 {
151 'target_name': 'athena_app_shell_lib', 151 'target_name': 'athena_app_shell_lib',
152 'type': 'static_library', 152 'type': 'static_library',
153 'dependencies': [ 153 'dependencies': [
154 '../extensions/shell/app_shell.gyp:app_shell_lib', 154 '../extensions/shell/app_shell.gyp:app_shell_lib',
155 ], 155 ],
156 'sources': [ 156 'sources': [
157 'content/shell/content_activity_factory.cc',
158 'content/shell/shell_app_activity.cc',
159 'content/shell/shell_app_activity.h',
157 'extensions/shell/extensions_delegate_impl.cc', 160 'extensions/shell/extensions_delegate_impl.cc',
158 ], 161 ],
159 }, 162 },
160 { 163 {
161 'target_name': 'athena_test_support', 164 'target_name': 'athena_test_support',
162 'type': 'static_library', 165 'type': 'static_library',
163 'dependencies': [ 166 'dependencies': [
164 '../base/base.gyp:test_support_base', 167 '../base/base.gyp:test_support_base',
165 '../chromeos/chromeos.gyp:chromeos', 168 '../chromeos/chromeos.gyp:chromeos',
166 '../skia/skia.gyp:skia', 169 '../skia/skia.gyp:skia',
(...skipping 27 matching lines...) Expand all
194 'wm/test/window_manager_impl_test_api.cc', 197 'wm/test/window_manager_impl_test_api.cc',
195 'wm/test/window_manager_impl_test_api.h', 198 'wm/test/window_manager_impl_test_api.h',
196 ], 199 ],
197 }, 200 },
198 { 201 {
199 'target_name': 'athena_unittests', 202 'target_name': 'athena_unittests',
200 'type': 'executable', 203 'type': 'executable',
201 'dependencies': [ 204 'dependencies': [
202 '../skia/skia.gyp:skia', 205 '../skia/skia.gyp:skia',
203 '../testing/gtest.gyp:gtest', 206 '../testing/gtest.gyp:gtest',
207 'athena_app_shell_lib',
204 'athena_lib', 208 'athena_lib',
205 'athena_test_support', 209 'athena_test_support',
206 'main/athena_main.gyp:athena_main_lib', 210 'main/athena_main.gyp:athena_main_lib',
207 'resources/athena_resources.gyp:athena_pak', 211 'resources/athena_resources.gyp:athena_pak',
208 ], 212 ],
209 'sources': [ 213 'sources': [
210 'activity/activity_manager_unittest.cc', 214 'activity/activity_manager_unittest.cc',
211 'common/fill_layout_manager_unittest.cc', 215 'common/fill_layout_manager_unittest.cc',
212 'content/app_activity_unittest.cc', 216 'content/app_activity_unittest.cc',
213 'home/home_card_gesture_manager_unittest.cc', 217 'home/home_card_gesture_manager_unittest.cc',
214 'home/home_card_unittest.cc', 218 'home/home_card_unittest.cc',
215 'input/accelerator_manager_unittest.cc', 219 'input/accelerator_manager_unittest.cc',
216 'screen/screen_manager_unittest.cc', 220 'screen/screen_manager_unittest.cc',
217 'test/athena_unittests.cc', 221 'test/athena_unittests.cc',
218 'wm/split_view_controller_unittest.cc', 222 'wm/split_view_controller_unittest.cc',
219 'wm/window_list_provider_impl_unittest.cc', 223 'wm/window_list_provider_impl_unittest.cc',
220 'wm/window_manager_unittest.cc', 224 'wm/window_manager_unittest.cc',
221 ], 225 ],
222 } 226 }
223 ], 227 ],
224 } 228 }
225 229
OLDNEW
« no previous file with comments | « athena/activity/public/activity_factory.h ('k') | athena/content/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698