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

Side by Side Diff: athena/athena.gyp

Issue 514293003: Run athena on chrome (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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'home/home_card_impl.cc', 63 'home/home_card_impl.cc',
64 'home/minimized_home.cc', 64 'home/minimized_home.cc',
65 'home/minimized_home.h', 65 'home/minimized_home.h',
66 'home/public/app_model_builder.h', 66 'home/public/app_model_builder.h',
67 'home/public/home_card.h', 67 'home/public/home_card.h',
68 'input/accelerator_manager_impl.cc', 68 'input/accelerator_manager_impl.cc',
69 'input/accelerator_manager_impl.h', 69 'input/accelerator_manager_impl.h',
70 'input/input_manager_impl.cc', 70 'input/input_manager_impl.cc',
71 'input/public/accelerator_manager.h', 71 'input/public/accelerator_manager.h',
72 'input/public/input_manager.h', 72 'input/public/input_manager.h',
73 'resource_manager/delegate/resource_manager_delegate.cc',
74 'resource_manager/memory_pressure_notifier.cc',
75 'resource_manager/memory_pressure_notifier.h',
76 'resource_manager/public/resource_manager.h',
77 'resource_manager/public/resource_manager_delegate.h',
78 'resource_manager/resource_manager_impl.cc',
73 'screen/background_controller.cc', 79 'screen/background_controller.cc',
74 'screen/background_controller.h', 80 'screen/background_controller.h',
75 'screen/public/screen_manager.h', 81 'screen/public/screen_manager.h',
76 'screen/screen_accelerator_handler.cc', 82 'screen/screen_accelerator_handler.cc',
77 'screen/screen_accelerator_handler.h', 83 'screen/screen_accelerator_handler.h',
78 'screen/screen_manager_impl.cc', 84 'screen/screen_manager_impl.cc',
79 'system/device_socket_listener.cc', 85 'system/device_socket_listener.cc',
80 'system/device_socket_listener.h', 86 'system/device_socket_listener.h',
81 'system/orientation_controller.cc', 87 'system/orientation_controller.cc',
82 'system/orientation_controller.h', 88 'system/orientation_controller.h',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 'content/public/content_activity_factory_creator.h', 141 'content/public/content_activity_factory_creator.h',
136 'content/public/content_app_model_builder.h', 142 'content/public/content_app_model_builder.h',
137 'content/public/web_contents_view_delegate_creator.h', 143 'content/public/web_contents_view_delegate_creator.h',
138 'content/render_view_context_menu_impl.cc', 144 'content/render_view_context_menu_impl.cc',
139 'content/render_view_context_menu_impl.h', 145 'content/render_view_context_menu_impl.h',
140 'content/web_activity.cc', 146 'content/web_activity.cc',
141 'content/web_activity.h', 147 'content/web_activity.h',
142 'content/web_contents_view_delegate_factory_impl.cc', 148 'content/web_contents_view_delegate_factory_impl.cc',
143 'extensions/public/extensions_delegate.h', 149 'extensions/public/extensions_delegate.h',
144 'extensions/extensions_delegate.cc', 150 'extensions/extensions_delegate.cc',
145 'resource_manager/memory_pressure_notifier.cc',
146 'resource_manager/memory_pressure_notifier.h',
147 'resource_manager/resource_manager_impl.cc',
148 'resource_manager/public/resource_manager.h',
149 'resource_manager/public/resource_manager_delegate.h',
150 'virtual_keyboard/public/virtual_keyboard_manager.h', 151 'virtual_keyboard/public/virtual_keyboard_manager.h',
151 'resource_manager/resource_manager_impl.cc',
152 'virtual_keyboard/virtual_keyboard_manager_impl.cc', 152 'virtual_keyboard/virtual_keyboard_manager_impl.cc',
153 ], 153 ],
154 }, 154 },
155 { 155 {
156 'target_name': 'athena_chrome_lib',
157 'type': 'static_library',
158 'dependencies': [
159 '../chrome/chrome.gyp:browser_extensions',
160 ],
161 'sources': [
162 'content/chrome/content_activity_factory.cc',
163 'extensions/chrome/athena_apps_client.h',
164 'extensions/chrome/athena_apps_client.cc',
165 'extensions/chrome/extensions_delegate_impl.cc',
166 ],
167 },
168 {
156 'target_name': 'athena_app_shell_lib', 169 'target_name': 'athena_app_shell_lib',
157 'type': 'static_library', 170 'type': 'static_library',
158 'dependencies': [ 171 'dependencies': [
159 '../extensions/shell/app_shell.gyp:app_shell_lib', 172 '../extensions/shell/app_shell.gyp:app_shell_lib',
160 ], 173 ],
161 'sources': [ 174 'sources': [
162 'content/shell/content_activity_factory.cc', 175 'content/shell/content_activity_factory.cc',
163 'content/shell/shell_app_activity.cc', 176 'content/shell/shell_app_activity.cc',
164 'content/shell/shell_app_activity.h', 177 'content/shell/shell_app_activity.h',
165 'extensions/shell/extensions_delegate_impl.cc', 178 'extensions/shell/extensions_delegate_impl.cc',
166 'resource_manager/delegate/resource_manager_delegate.cc',
167 ], 179 ],
168 }, 180 },
169 { 181 {
170 'target_name': 'athena_test_support', 182 'target_name': 'athena_test_support',
171 'type': 'static_library', 183 'type': 'static_library',
172 'dependencies': [ 184 'dependencies': [
173 '../base/base.gyp:test_support_base', 185 '../base/base.gyp:test_support_base',
174 '../chromeos/chromeos.gyp:chromeos', 186 '../chromeos/chromeos.gyp:chromeos',
175 '../skia/skia.gyp:skia', 187 '../skia/skia.gyp:skia',
176 '../testing/gtest.gyp:gtest', 188 '../testing/gtest.gyp:gtest',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 'screen/screen_manager_unittest.cc', 239 'screen/screen_manager_unittest.cc',
228 'test/athena_unittests.cc', 240 'test/athena_unittests.cc',
229 'wm/split_view_controller_unittest.cc', 241 'wm/split_view_controller_unittest.cc',
230 'wm/window_list_provider_impl_unittest.cc', 242 'wm/window_list_provider_impl_unittest.cc',
231 'wm/window_manager_unittest.cc', 243 'wm/window_manager_unittest.cc',
232 ], 244 ],
233 } 245 }
234 ], 246 ],
235 } 247 }
236 248
OLDNEW
« no previous file with comments | « no previous file | athena/content/chrome/DEPS » ('j') | athena/extensions/chrome/athena_apps_client.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698