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

Side by Side Diff: athena/athena.gyp

Issue 487843003: ExtensionDelegate to abstract extension implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | athena/content/DEPS » ('j') | athena/main/athena_launcher.cc » ('J')
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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 ], 96 ],
97 }, 97 },
98 { 98 {
99 'target_name': 'athena_content_lib', 99 'target_name': 'athena_content_lib',
100 'type': 'static_library', 100 'type': 'static_library',
101 'dependencies': [ 101 'dependencies': [
102 'athena_lib', 102 'athena_lib',
103 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 103 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
104 '../components/components.gyp:renderer_context_menu', 104 '../components/components.gyp:renderer_context_menu',
105 '../components/components.gyp:web_modal', 105 '../components/components.gyp:web_modal',
106 '../extensions/extensions.gyp:extensions_browser',
107 '../extensions/extensions.gyp:extensions_common',
108 '../extensions/shell/app_shell.gyp:app_shell_lib',
106 '../content/content.gyp:content_browser', 109 '../content/content.gyp:content_browser',
107 '../ui/app_list/app_list.gyp:app_list', 110 '../ui/app_list/app_list.gyp:app_list',
108 '../ui/keyboard/keyboard.gyp:keyboard', 111 '../ui/keyboard/keyboard.gyp:keyboard',
109 '../ui/keyboard/keyboard.gyp:keyboard_resources', 112 '../ui/keyboard/keyboard.gyp:keyboard_resources',
110 '../third_party/WebKit/public/blink.gyp:blink', 113 '../third_party/WebKit/public/blink.gyp:blink',
111 '../ui/views/controls/webview/webview.gyp:webview', 114 '../ui/views/controls/webview/webview.gyp:webview',
112 '../skia/skia.gyp:skia', 115 '../skia/skia.gyp:skia',
113 ], 116 ],
114 'defines': [ 117 'defines': [
115 'ATHENA_IMPLEMENTATION', 118 'ATHENA_IMPLEMENTATION',
116 ], 119 ],
117 'sources': [ 120 'sources': [
118 'content/public/content_activity_factory.h', 121 'content/public/content_activity_factory.h',
119 'content/public/content_app_model_builder.h', 122 'content/public/content_app_model_builder.h',
120 'content/public/web_contents_view_delegate_creator.h', 123 'content/public/web_contents_view_delegate_creator.h',
121 'content/content_activity_factory.cc', 124 'content/content_activity_factory.cc',
122 'content/content_app_model_builder.cc', 125 'content/content_app_model_builder.cc',
123 'content/app_activity.h', 126 'content/app_activity.h',
124 'content/app_activity.cc', 127 'content/app_activity.cc',
125 'content/render_view_context_menu_impl.cc', 128 'content/render_view_context_menu_impl.cc',
126 'content/render_view_context_menu_impl.h', 129 'content/render_view_context_menu_impl.h',
127 'content/web_activity.h', 130 'content/web_activity.h',
128 'content/web_activity.cc', 131 'content/web_activity.cc',
129 'content/web_contents_view_delegate_factory_impl.cc', 132 'content/web_contents_view_delegate_factory_impl.cc',
133 'extensions/public/extensions_delegate.h',
134 'extensions/extensions_delegate_impl.cc',
130 'virtual_keyboard/public/virtual_keyboard_manager.h', 135 'virtual_keyboard/public/virtual_keyboard_manager.h',
131 'virtual_keyboard/virtual_keyboard_manager_impl.cc', 136 'virtual_keyboard/virtual_keyboard_manager_impl.cc',
132 ], 137 ],
133 }, 138 },
134 { 139 {
135 'target_name': 'athena_test_support', 140 'target_name': 'athena_test_support',
136 'type': 'static_library', 141 'type': 'static_library',
137 'dependencies': [ 142 'dependencies': [
138 '../base/base.gyp:test_support_base', 143 '../base/base.gyp:test_support_base',
139 '../chromeos/chromeos.gyp:chromeos', 144 '../chromeos/chromeos.gyp:chromeos',
140 '../skia/skia.gyp:skia', 145 '../skia/skia.gyp:skia',
141 '../testing/gtest.gyp:gtest', 146 '../testing/gtest.gyp:gtest',
142 '../ui/accessibility/accessibility.gyp:ax_gen', 147 '../ui/accessibility/accessibility.gyp:ax_gen',
143 '../ui/app_list/app_list.gyp:app_list', 148 '../ui/app_list/app_list.gyp:app_list',
144 '../ui/aura/aura.gyp:aura_test_support', 149 '../ui/aura/aura.gyp:aura_test_support',
145 '../ui/base/ui_base.gyp:ui_base_test_support', 150 '../ui/base/ui_base.gyp:ui_base_test_support',
146 '../ui/compositor/compositor.gyp:compositor_test_support', 151 '../ui/compositor/compositor.gyp:compositor_test_support',
147 '../ui/views/views.gyp:views', 152 '../ui/views/views.gyp:views',
148 '../ui/wm/wm.gyp:wm', 153 '../ui/wm/wm.gyp:wm',
149 '../url/url.gyp:url_lib', 154 '../url/url.gyp:url_lib',
150 'athena_content_lib', 155 'athena_content_lib',
151 'athena_lib', 156 'athena_lib',
152 'resources/athena_resources.gyp:athena_resources', 157 'resources/athena_resources.gyp:athena_resources',
153 ], 158 ],
154 'sources': [ 159 'sources': [
160 'extensions/test/test_extensions_delegate.cc',
155 'test/athena_test_base.cc', 161 'test/athena_test_base.cc',
156 'test/athena_test_base.h', 162 'test/athena_test_base.h',
157 'test/athena_test_helper.cc', 163 'test/athena_test_helper.cc',
158 'test/athena_test_helper.h', 164 'test/athena_test_helper.h',
159 'test/sample_activity.cc', 165 'test/sample_activity.cc',
160 'test/sample_activity.h', 166 'test/sample_activity.h',
161 'test/sample_activity_factory.cc', 167 'test/sample_activity_factory.cc',
162 'test/sample_activity_factory.h', 168 'test/sample_activity_factory.h',
163 'test/test_app_model_builder.cc', 169 'test/test_app_model_builder.cc',
164 'test/test_app_model_builder.h', 170 'test/test_app_model_builder.h',
(...skipping 19 matching lines...) Expand all
184 'input/accelerator_manager_unittest.cc', 190 'input/accelerator_manager_unittest.cc',
185 'screen/screen_manager_unittest.cc', 191 'screen/screen_manager_unittest.cc',
186 'wm/split_view_controller_unittest.cc', 192 'wm/split_view_controller_unittest.cc',
187 'wm/window_list_provider_impl_unittest.cc', 193 'wm/window_list_provider_impl_unittest.cc',
188 'wm/window_manager_unittest.cc', 194 'wm/window_manager_unittest.cc',
189 ], 195 ],
190 } 196 }
191 ], 197 ],
192 } 198 }
193 199
OLDNEW
« no previous file with comments | « no previous file | athena/content/DEPS » ('j') | athena/main/athena_launcher.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698