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

Side by Side Diff: athena/athena.gyp

Issue 311113005: AppModelBuilder to athena. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix 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
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 17 matching lines...) Expand all
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 'athena_export.h', 34 'athena_export.h',
35 'home/app_list_view_delegate.cc', 35 'home/app_list_view_delegate.cc',
36 'home/app_list_view_delegate.h', 36 'home/app_list_view_delegate.h',
37 'home/home_card_impl.cc', 37 'home/home_card_impl.cc',
38 'home/public/app_model_builder.h',
38 'home/public/home_card.h', 39 'home/public/home_card.h',
39 'input/public/input_manager.h', 40 'input/public/input_manager.h',
40 'input/public/accelerator_manager.h', 41 'input/public/accelerator_manager.h',
41 'input/input_manager_impl.cc', 42 'input/input_manager_impl.cc',
42 'input/accelerator_manager_impl.cc', 43 'input/accelerator_manager_impl.cc',
43 'input/accelerator_manager_impl.h', 44 'input/accelerator_manager_impl.h',
44 'screen/background_controller.cc', 45 'screen/background_controller.cc',
45 'screen/background_controller.h', 46 'screen/background_controller.h',
46 'screen/public/screen_manager.h', 47 'screen/public/screen_manager.h',
47 'screen/screen_manager_impl.cc', 48 'screen/screen_manager_impl.cc',
48 'wm/public/window_manager.h', 49 'wm/public/window_manager.h',
49 'wm/window_manager_impl.cc', 50 'wm/window_manager_impl.cc',
50 'wm/window_overview_mode.cc', 51 'wm/window_overview_mode.cc',
51 'wm/window_overview_mode.h', 52 'wm/window_overview_mode.h',
52 ], 53 ],
53 }, 54 },
54 { 55 {
55 'target_name': 'athena_content_lib', 56 'target_name': 'athena_content_lib',
56 'type': '<(component)', 57 'type': '<(component)',
57 'dependencies': [ 58 'dependencies': [
58 'athena_lib', 59 'athena_lib',
59 '../content/content.gyp:content_browser', 60 '../content/content.gyp:content_browser',
61 '../ui/app_list/app_list.gyp:app_list',
60 '../ui/views/controls/webview/webview.gyp:webview', 62 '../ui/views/controls/webview/webview.gyp:webview',
61 '../skia/skia.gyp:skia', 63 '../skia/skia.gyp:skia',
62 ], 64 ],
63 'defines': [ 65 'defines': [
64 'ATHENA_IMPLEMENTATION', 66 'ATHENA_IMPLEMENTATION',
65 ], 67 ],
66 'sources': [ 68 'sources': [
67 'content/public/content_activity_factory.h', 69 'content/public/content_activity_factory.h',
70 'content/public/content_app_model_builder.h',
68 'content/content_activity_factory.cc', 71 'content/content_activity_factory.cc',
72 'content/content_app_model_builder.cc',
69 'content/web_activity.h', 73 'content/web_activity.h',
70 'content/web_activity.cc', 74 'content/web_activity.cc',
71 ], 75 ],
72 }, 76 },
73 { 77 {
74 'target_name': 'athena_test_support', 78 'target_name': 'athena_test_support',
75 'type': 'static_library', 79 'type': 'static_library',
76 'dependencies': [ 80 'dependencies': [
77 '../base/base.gyp:test_support_base', 81 '../base/base.gyp:test_support_base',
78 '../skia/skia.gyp:skia', 82 '../skia/skia.gyp:skia',
79 '../testing/gtest.gyp:gtest', 83 '../testing/gtest.gyp:gtest',
80 '../ui/accessibility/accessibility.gyp:ax_gen', 84 '../ui/accessibility/accessibility.gyp:ax_gen',
85 '../ui/app_list/app_list.gyp:app_list',
81 '../ui/aura/aura.gyp:aura_test_support', 86 '../ui/aura/aura.gyp:aura_test_support',
82 '../ui/base/ui_base.gyp:ui_base_test_support', 87 '../ui/base/ui_base.gyp:ui_base_test_support',
83 '../ui/compositor/compositor.gyp:compositor_test_support', 88 '../ui/compositor/compositor.gyp:compositor_test_support',
84 '../ui/views/views.gyp:views', 89 '../ui/views/views.gyp:views',
85 '../ui/wm/wm.gyp:wm', 90 '../ui/wm/wm.gyp:wm',
86 '../url/url.gyp:url_lib', 91 '../url/url.gyp:url_lib',
87 'athena_lib', 92 'athena_lib',
88 ], 93 ],
89 'sources': [ 94 'sources': [
90 'main/athena_launcher.cc', 95 'main/athena_launcher.cc',
91 'main/athena_launcher.h', 96 'main/athena_launcher.h',
92 'main/placeholder.cc', 97 'main/placeholder.cc',
93 'main/placeholder.h', 98 'main/placeholder.h',
94 'test/athena_test_base.cc', 99 'test/athena_test_base.cc',
95 'test/athena_test_base.h', 100 'test/athena_test_base.h',
96 'test/athena_test_helper.cc', 101 'test/athena_test_helper.cc',
97 'test/athena_test_helper.h', 102 'test/athena_test_helper.h',
98 'test/sample_activity.cc', 103 'test/sample_activity.cc',
99 'test/sample_activity.h', 104 'test/sample_activity.h',
100 'test/sample_activity_factory.cc', 105 'test/sample_activity_factory.cc',
101 'test/sample_activity_factory.h', 106 'test/sample_activity_factory.h',
107 'test/test_app_model_builder.cc',
108 'test/test_app_model_builder.h',
102 ], 109 ],
103 }, 110 },
104 { 111 {
105 'target_name': 'athena_unittests', 112 'target_name': 'athena_unittests',
106 'type': 'executable', 113 'type': 'executable',
107 'dependencies': [ 114 'dependencies': [
108 '../testing/gtest.gyp:gtest', 115 '../testing/gtest.gyp:gtest',
109 'athena_lib', 116 'athena_lib',
110 'athena_test_support', 117 'athena_test_support',
111 ], 118 ],
112 'sources': [ 119 'sources': [
113 'test/athena_unittests.cc', 120 'test/athena_unittests.cc',
114 'activity/activity_manager_unittest.cc', 121 'activity/activity_manager_unittest.cc',
115 'input/accelerator_manager_unittest.cc', 122 'input/accelerator_manager_unittest.cc',
116 'wm/window_manager_unittest.cc', 123 'wm/window_manager_unittest.cc',
117 ], 124 ],
118 } 125 }
119 ], 126 ],
120 } 127 }
121 128
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698