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

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

Powered by Google App Engine
This is Rietveld 408576698