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

Side by Side Diff: ui/app_list/app_list.gyp

Issue 10386224: app_list: Add search box and search result view for v2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win_aura Created 8 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 14 matching lines...) Expand all
25 'app_list_bubble_border.cc', 25 'app_list_bubble_border.cc',
26 'app_list_bubble_border.h', 26 'app_list_bubble_border.h',
27 'app_list_export.h', 27 'app_list_export.h',
28 'app_list_item_model.cc', 28 'app_list_item_model.cc',
29 'app_list_item_model.h', 29 'app_list_item_model.h',
30 'app_list_item_model_observer.h', 30 'app_list_item_model_observer.h',
31 'app_list_item_view.cc', 31 'app_list_item_view.cc',
32 'app_list_item_view.h', 32 'app_list_item_view.h',
33 'app_list_model.cc', 33 'app_list_model.cc',
34 'app_list_model.h', 34 'app_list_model.h',
35 'app_list_model_view.cc',
36 'app_list_model_view.h',
37 'app_list_view.cc', 35 'app_list_view.cc',
38 'app_list_view.h', 36 'app_list_view.h',
39 'app_list_view_delegate.h', 37 'app_list_view_delegate.h',
38 'apps_grid_view.cc',
39 'apps_grid_view.h',
40 'drop_shadow_label.cc', 40 'drop_shadow_label.cc',
41 'drop_shadow_label.h', 41 'drop_shadow_label.h',
42 'icon_cache.cc', 42 'icon_cache.cc',
43 'icon_cache.h', 43 'icon_cache.h',
44 'page_switcher.cc', 44 'page_switcher.cc',
45 'page_switcher.h', 45 'page_switcher.h',
46 'pagination_model.cc', 46 'pagination_model.cc',
47 'pagination_model.h', 47 'pagination_model.h',
48 'pagination_model_observer.h', 48 'pagination_model_observer.h',
49 'search_box_model.h',
50 'search_box_model.cc',
51 'search_box_model_observer.h',
52 'search_box_view.cc',
53 'search_box_view.h',
54 'search_box_view_delegate.h',
55 'search_result.cc',
56 'search_result.h',
57 'search_result_view.cc',
58 'search_result_view.h',
59 'search_result_list_view.cc',
60 'search_result_list_view.h',
61 'search_result_list_view_delegate.h',
49 ], 62 ],
50 }, 63 },
51 { 64 {
52 'target_name': 'app_list_unittests', 65 'target_name': 'app_list_unittests',
53 'type': 'executable', 66 'type': 'executable',
54 'dependencies': [ 67 'dependencies': [
55 '../../base/base.gyp:base', 68 '../../base/base.gyp:base',
56 '../../base/base.gyp:test_support_base', 69 '../../base/base.gyp:test_support_base',
57 '../../skia/skia.gyp:skia', 70 '../../skia/skia.gyp:skia',
58 '../../testing/gtest.gyp:gtest', 71 '../../testing/gtest.gyp:gtest',
59 '../compositor/compositor.gyp:compositor', 72 '../compositor/compositor.gyp:compositor',
60 '../compositor/compositor.gyp:compositor_test_support', 73 '../compositor/compositor.gyp:compositor_test_support',
61 '../views/views.gyp:views', 74 '../views/views.gyp:views',
62 'app_list', 75 'app_list',
63 ], 76 ],
64 'sources': [ 77 'sources': [
65 'app_list_model_view_unittest.cc', 78 'apps_grid_view_unittest.cc',
66 'run_all_unittests.cc', 79 'run_all_unittests.cc',
67 ], 80 ],
68 }, 81 },
69 ], 82 ],
70 } 83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698