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

Side by Side Diff: athena/athena.gyp

Issue 306083005: Replace the HomeCard by the AppList in Athena. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix for focus_controller 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 {
11 'target_name': 'athena_lib', 11 'target_name': 'athena_lib',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../ui/aura/aura.gyp:aura', 14 '../ui/aura/aura.gyp:aura',
15 '../ui/app_list/app_list.gyp:app_list',
15 '../ui/views/views.gyp:views', 16 '../ui/views/views.gyp:views',
16 '../ui/accessibility/accessibility.gyp:ax_gen', 17 '../ui/accessibility/accessibility.gyp:ax_gen',
17 '../skia/skia.gyp:skia', 18 '../skia/skia.gyp:skia',
18 ], 19 ],
19 'defines': [ 20 'defines': [
20 'ATHENA_IMPLEMENTATION', 21 'ATHENA_IMPLEMENTATION',
21 ], 22 ],
22 'sources': [ 23 'sources': [
23 # All .cc, .h under athena, except unittests 24 # All .cc, .h under athena, except unittests
24 'athena_export.h', 25 'athena_export.h',
25 'home/home_card_delegate_view.cc', 26 'home/app_list_view_delegate.cc',
26 'home/home_card_delegate_view.h', 27 'home/app_list_view_delegate.h',
27 'home/home_card_impl.cc', 28 'home/home_card_impl.cc',
28 'home/public/home_card.h', 29 'home/public/home_card.h',
29 'screen/background_controller.cc', 30 'screen/background_controller.cc',
30 'screen/background_controller.h', 31 'screen/background_controller.h',
31 'screen/public/screen_manager.h', 32 'screen/public/screen_manager.h',
32 'screen/screen_manager_impl.cc', 33 'screen/screen_manager_impl.cc',
33 'activity/public/activity.h', 34 'activity/public/activity.h',
34 'activity/public/activity_manager.h', 35 'activity/public/activity_manager.h',
35 'activity/public/activity_view_manager.h', 36 'activity/public/activity_view_manager.h',
36 'activity/public/activity_view_model.h', 37 'activity/public/activity_view_model.h',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 'athena_test_support', 76 'athena_test_support',
76 ], 77 ],
77 'sources': [ 78 'sources': [
78 'test/athena_unittests.cc', 79 'test/athena_unittests.cc',
79 'wm/window_manager_unittest.cc', 80 'wm/window_manager_unittest.cc',
80 ], 81 ],
81 } 82 }
82 ], 83 ],
83 } 84 }
84 85
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698