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

Side by Side Diff: athena/athena.gyp

Issue 335793005: athena: Add support for virtual keyboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 6 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/common/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 13 matching lines...) Expand all
24 # All .cc, .h under athena, except unittests 24 # All .cc, .h under athena, except unittests
25 'activity/activity.cc', 25 'activity/activity.cc',
26 'activity/activity_factory.cc', 26 'activity/activity_factory.cc',
27 'activity/activity_manager_impl.cc', 27 'activity/activity_manager_impl.cc',
28 'activity/activity_view_manager_impl.cc', 28 'activity/activity_view_manager_impl.cc',
29 'activity/public/activity.h', 29 'activity/public/activity.h',
30 'activity/public/activity_factory.h', 30 'activity/public/activity_factory.h',
31 'activity/public/activity_manager.h', 31 'activity/public/activity_manager.h',
32 'activity/public/activity_view_manager.h', 32 'activity/public/activity_view_manager.h',
33 'activity/public/activity_view_model.h', 33 'activity/public/activity_view_model.h',
34 » # move athena_export.h to common/ 34 # move athena_export.h to common/
35 'athena_export.h', 35 'athena_export.h',
36 'common/fill_layout_manager.cc',
37 'common/fill_layout_manager.h',
36 'common/switches.cc', 38 'common/switches.cc',
37 'common/switches.h', 39 'common/switches.h',
38 'home/app_list_view_delegate.cc', 40 'home/app_list_view_delegate.cc',
39 'home/app_list_view_delegate.h', 41 'home/app_list_view_delegate.h',
40 'home/home_card_impl.cc', 42 'home/home_card_impl.cc',
41 'home/public/app_model_builder.h', 43 'home/public/app_model_builder.h',
42 'home/public/home_card.h', 44 'home/public/home_card.h',
43 » 'input/public/input_manager.h', 45 'input/accelerator_manager_impl.cc',
44 » 'input/public/accelerator_manager.h', 46 'input/accelerator_manager_impl.h',
45 » 'input/input_manager_impl.cc', 47 'input/input_manager_impl.cc',
46 » 'input/accelerator_manager_impl.cc', 48 'input/public/input_manager.h',
47 » 'input/accelerator_manager_impl.h', 49 'input/public/accelerator_manager.h',
48 'screen/background_controller.cc', 50 'screen/background_controller.cc',
49 'screen/background_controller.h', 51 'screen/background_controller.h',
50 'screen/public/screen_manager.h', 52 'screen/public/screen_manager.h',
51 'screen/screen_accelerator_handler.cc', 53 'screen/screen_accelerator_handler.cc',
52 'screen/screen_accelerator_handler.h', 54 'screen/screen_accelerator_handler.h',
53 'screen/screen_manager_impl.cc', 55 'screen/screen_manager_impl.cc',
54 'wm/public/window_manager.h', 56 'wm/public/window_manager.h',
55 'wm/window_manager_impl.cc', 57 'wm/window_manager_impl.cc',
56 'wm/window_overview_mode.cc', 58 'wm/window_overview_mode.cc',
57 'wm/window_overview_mode.h', 59 'wm/window_overview_mode.h',
58 ], 60 ],
59 }, 61 },
60 { 62 {
61 'target_name': 'athena_content_lib', 63 'target_name': 'athena_content_lib',
62 'type': 'static_library', 64 'type': 'static_library',
63 'dependencies': [ 65 'dependencies': [
64 'athena_lib', 66 'athena_lib',
67 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
65 '../content/content.gyp:content_browser', 68 '../content/content.gyp:content_browser',
66 '../ui/app_list/app_list.gyp:app_list', 69 '../ui/app_list/app_list.gyp:app_list',
70 '../ui/keyboard/keyboard.gyp:keyboard',
71 '../ui/keyboard/keyboard.gyp:keyboard_resources',
72 '../third_party/WebKit/public/blink.gyp:blink',
67 '../ui/views/controls/webview/webview.gyp:webview', 73 '../ui/views/controls/webview/webview.gyp:webview',
68 '../skia/skia.gyp:skia', 74 '../skia/skia.gyp:skia',
69 ], 75 ],
70 'defines': [ 76 'defines': [
71 'ATHENA_IMPLEMENTATION', 77 'ATHENA_IMPLEMENTATION',
72 ], 78 ],
73 'sources': [ 79 'sources': [
74 'content/public/content_activity_factory.h', 80 'content/public/content_activity_factory.h',
75 'content/public/content_app_model_builder.h', 81 'content/public/content_app_model_builder.h',
76 'content/content_activity_factory.cc', 82 'content/content_activity_factory.cc',
77 'content/content_app_model_builder.cc', 83 'content/content_app_model_builder.cc',
78 'content/app_activity.h', 84 'content/app_activity.h',
79 'content/app_activity.cc', 85 'content/app_activity.cc',
80 'content/web_activity.h', 86 'content/web_activity.h',
81 'content/web_activity.cc', 87 'content/web_activity.cc',
88 'virtual_keyboard/public/virtual_keyboard_bindings.h',
89 'virtual_keyboard/public/virtual_keyboard_manager.h',
90 'virtual_keyboard/virtual_keyboard_bindings_impl.cc',
91 'virtual_keyboard/virtual_keyboard_manager_impl.cc',
92 'virtual_keyboard/vk_message_handler.cc',
93 'virtual_keyboard/vk_message_handler.h',
94 'virtual_keyboard/vk_webui_controller.cc',
95 'virtual_keyboard/vk_webui_controller.h',
82 ], 96 ],
83 }, 97 },
84 { 98 {
85 'target_name': 'athena_test_support', 99 'target_name': 'athena_test_support',
86 'type': 'static_library', 100 'type': 'static_library',
87 'dependencies': [ 101 'dependencies': [
88 '../base/base.gyp:test_support_base', 102 '../base/base.gyp:test_support_base',
89 '../skia/skia.gyp:skia', 103 '../skia/skia.gyp:skia',
90 '../testing/gtest.gyp:gtest', 104 '../testing/gtest.gyp:gtest',
91 '../ui/accessibility/accessibility.gyp:ax_gen', 105 '../ui/accessibility/accessibility.gyp:ax_gen',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 'sources': [ 141 'sources': [
128 'test/athena_unittests.cc', 142 'test/athena_unittests.cc',
129 'activity/activity_manager_unittest.cc', 143 'activity/activity_manager_unittest.cc',
130 'input/accelerator_manager_unittest.cc', 144 'input/accelerator_manager_unittest.cc',
131 'wm/window_manager_unittest.cc', 145 'wm/window_manager_unittest.cc',
132 ], 146 ],
133 } 147 }
134 ], 148 ],
135 } 149 }
136 150
OLDNEW
« no previous file with comments | « no previous file | athena/common/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698