OLD | NEW |
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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 ], | 95 ], |
96 }, | 96 }, |
97 { | 97 { |
98 'target_name': 'athena_content_lib', | 98 'target_name': 'athena_content_lib', |
99 'type': 'static_library', | 99 'type': 'static_library', |
100 'dependencies': [ | 100 'dependencies': [ |
101 'athena_lib', | 101 'athena_lib', |
102 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 102 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
103 '../components/components.gyp:renderer_context_menu', | 103 '../components/components.gyp:renderer_context_menu', |
104 '../components/components.gyp:web_modal', | 104 '../components/components.gyp:web_modal', |
| 105 '../extensions/extensions.gyp:extensions_browser', |
| 106 '../extensions/extensions.gyp:extensions_common', |
| 107 '../extensions/shell/app_shell.gyp:app_shell_lib', |
105 '../content/content.gyp:content_browser', | 108 '../content/content.gyp:content_browser', |
106 '../ui/app_list/app_list.gyp:app_list', | 109 '../ui/app_list/app_list.gyp:app_list', |
107 '../ui/keyboard/keyboard.gyp:keyboard', | 110 '../ui/keyboard/keyboard.gyp:keyboard', |
108 '../ui/keyboard/keyboard.gyp:keyboard_resources', | 111 '../ui/keyboard/keyboard.gyp:keyboard_resources', |
109 '../third_party/WebKit/public/blink.gyp:blink', | 112 '../third_party/WebKit/public/blink.gyp:blink', |
110 '../ui/views/controls/webview/webview.gyp:webview', | 113 '../ui/views/controls/webview/webview.gyp:webview', |
111 '../skia/skia.gyp:skia', | 114 '../skia/skia.gyp:skia', |
112 ], | 115 ], |
113 'defines': [ | 116 'defines': [ |
114 'ATHENA_IMPLEMENTATION', | 117 'ATHENA_IMPLEMENTATION', |
115 ], | 118 ], |
116 'sources': [ | 119 'sources': [ |
117 'content/public/content_activity_factory.h', | 120 'content/public/content_activity_factory.h', |
118 'content/public/content_app_model_builder.h', | 121 'content/public/content_app_model_builder.h', |
119 'content/public/web_contents_view_delegate_creator.h', | 122 'content/public/web_contents_view_delegate_creator.h', |
120 'content/content_activity_factory.cc', | 123 'content/content_activity_factory.cc', |
121 'content/content_app_model_builder.cc', | 124 'content/content_app_model_builder.cc', |
122 'content/app_activity.h', | 125 'content/app_activity.h', |
123 'content/app_activity.cc', | 126 'content/app_activity.cc', |
124 'content/render_view_context_menu_impl.cc', | 127 'content/render_view_context_menu_impl.cc', |
125 'content/render_view_context_menu_impl.h', | 128 'content/render_view_context_menu_impl.h', |
126 'content/web_activity.h', | 129 'content/web_activity.h', |
127 'content/web_activity.cc', | 130 'content/web_activity.cc', |
128 'content/web_contents_view_delegate_factory_impl.cc', | 131 'content/web_contents_view_delegate_factory_impl.cc', |
| 132 'extensions/public/extensions_delegate.h', |
| 133 'extensions/extensions_delegate_impl.cc', |
129 'virtual_keyboard/public/virtual_keyboard_manager.h', | 134 'virtual_keyboard/public/virtual_keyboard_manager.h', |
130 'virtual_keyboard/virtual_keyboard_manager_impl.cc', | 135 'virtual_keyboard/virtual_keyboard_manager_impl.cc', |
131 ], | 136 ], |
132 }, | 137 }, |
133 { | 138 { |
134 'target_name': 'athena_test_support', | 139 'target_name': 'athena_test_support', |
135 'type': 'static_library', | 140 'type': 'static_library', |
136 'dependencies': [ | 141 'dependencies': [ |
137 '../base/base.gyp:test_support_base', | 142 '../base/base.gyp:test_support_base', |
138 '../chromeos/chromeos.gyp:chromeos', | 143 '../chromeos/chromeos.gyp:chromeos', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 'input/accelerator_manager_unittest.cc', | 186 'input/accelerator_manager_unittest.cc', |
182 'screen/screen_manager_unittest.cc', | 187 'screen/screen_manager_unittest.cc', |
183 'wm/split_view_controller_unittest.cc', | 188 'wm/split_view_controller_unittest.cc', |
184 'wm/window_list_provider_impl_unittest.cc', | 189 'wm/window_list_provider_impl_unittest.cc', |
185 'wm/window_manager_unittest.cc', | 190 'wm/window_manager_unittest.cc', |
186 ], | 191 ], |
187 } | 192 } |
188 ], | 193 ], |
189 } | 194 } |
190 | 195 |
OLD | NEW |