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

Side by Side Diff: athena/athena.gyp

Issue 375143002: Use Widget frame and WidgetDelegate in ActvityWidget (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 {
11 'target_name': 'athena_lib', 11 'target_name': 'athena_lib',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../skia/skia.gyp:skia', 14 '../skia/skia.gyp:skia',
15 '../ui/accessibility/accessibility.gyp:ax_gen', 15 '../ui/accessibility/accessibility.gyp:ax_gen',
16 '../ui/app_list/app_list.gyp:app_list', 16 '../ui/app_list/app_list.gyp:app_list',
17 '../ui/aura/aura.gyp:aura', 17 '../ui/aura/aura.gyp:aura',
18 '../ui/strings/ui_strings.gyp:ui_strings', 18 '../ui/strings/ui_strings.gyp:ui_strings',
19 '../ui/views/views.gyp:views', 19 '../ui/views/views.gyp:views',
20 ], 20 ],
21 'defines': [ 21 'defines': [
22 'ATHENA_IMPLEMENTATION', 22 'ATHENA_IMPLEMENTATION',
23 ], 23 ],
24 'sources': [ 24 'sources': [
25 # All .cc, .h under athena, except unittests 25 # All .cc, .h under athena, except unittests
26 'activity/activity.cc', 26 'activity/activity.cc',
27 'activity/activity_factory.cc', 27 'activity/activity_factory.cc',
28 'activity/activity_manager_impl.cc', 28 'activity/activity_manager_impl.cc',
29 'activity/activity_view_manager_impl.cc', 29 'activity/activity_view_manager_impl.cc',
30 'activity/activity_frame_view.cc',
31 'activity/activity_frame_view.h',
32 'activity/activity_widget_delegate.cc',
33 'activity/activity_widget_delegate.h',
30 'activity/public/activity.h', 34 'activity/public/activity.h',
31 'activity/public/activity_factory.h', 35 'activity/public/activity_factory.h',
32 'activity/public/activity_manager.h', 36 'activity/public/activity_manager.h',
33 'activity/public/activity_view_manager.h', 37 'activity/public/activity_view_manager.h',
34 'activity/public/activity_view_model.h', 38 'activity/public/activity_view_model.h',
35 # move athena_export.h to common/ 39 # move athena_export.h to common/
36 'athena_export.h', 40 'athena_export.h',
37 'common/fill_layout_manager.cc', 41 'common/fill_layout_manager.cc',
38 'common/fill_layout_manager.h', 42 'common/fill_layout_manager.h',
39 'common/switches.cc', 43 'common/switches.cc',
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'sources': [ 146 'sources': [
143 'test/athena_unittests.cc', 147 'test/athena_unittests.cc',
144 'activity/activity_manager_unittest.cc', 148 'activity/activity_manager_unittest.cc',
145 'input/accelerator_manager_unittest.cc', 149 'input/accelerator_manager_unittest.cc',
146 'wm/window_manager_unittest.cc', 150 'wm/window_manager_unittest.cc',
147 ], 151 ],
148 } 152 }
149 ], 153 ],
150 } 154 }
151 155
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698