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

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

Issue 12789010: [win] Change app launcher profile indicator to be a menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clang fail Created 7 years, 9 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 | « chrome/browser/ui/app_list/search_builder.cc ('k') | ui/app_list/app_list_menu.h » ('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 (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 {
11 'target_name': 'app_list', 11 'target_name': 'app_list',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../../base/base.gyp:base', 14 '../../base/base.gyp:base',
15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
16 '../../skia/skia.gyp:skia', 16 '../../skia/skia.gyp:skia',
17 '../base/strings/ui_strings.gyp:ui_strings',
17 '../compositor/compositor.gyp:compositor', 18 '../compositor/compositor.gyp:compositor',
18 '../ui.gyp:ui', 19 '../ui.gyp:ui',
19 '../ui.gyp:ui_resources', 20 '../ui.gyp:ui_resources',
20 ], 21 ],
21 'defines': [ 22 'defines': [
22 'APP_LIST_IMPLEMENTATION', 23 'APP_LIST_IMPLEMENTATION',
23 ], 24 ],
24 'sources': [ 25 'sources': [
25 'app_list_constants.cc', 26 'app_list_constants.cc',
26 'app_list_constants.h', 27 'app_list_constants.h',
27 'app_list_export.h', 28 'app_list_export.h',
28 'app_list_item_model.cc', 29 'app_list_item_model.cc',
29 'app_list_item_model.h', 30 'app_list_item_model.h',
30 'app_list_item_model_observer.h', 31 'app_list_item_model_observer.h',
32 'app_list_menu.cc',
33 'app_list_menu.h',
31 'app_list_model.cc', 34 'app_list_model.cc',
32 'app_list_model.h', 35 'app_list_model.h',
33 'app_list_model_observer.h', 36 'app_list_model_observer.h',
34 'app_list_switches.cc', 37 'app_list_switches.cc',
35 'app_list_switches.h', 38 'app_list_switches.h',
36 'app_list_view_delegate.h', 39 'app_list_view_delegate.h',
37 'apps_grid_view_delegate.h', 40 'apps_grid_view_delegate.h',
38 'cocoa/app_list_window_controller.h', 41 'cocoa/app_list_window_controller.h',
39 'cocoa/app_list_window_controller.mm', 42 'cocoa/app_list_window_controller.mm',
40 'cocoa/apps_grid_controller.h', 43 'cocoa/apps_grid_controller.h',
(...skipping 15 matching lines...) Expand all
56 'search_result_view_delegate.h', 59 'search_result_view_delegate.h',
57 'signin_delegate.cc', 60 'signin_delegate.cc',
58 'signin_delegate.h', 61 'signin_delegate.h',
59 'signin_delegate_observer.h', 62 'signin_delegate_observer.h',
60 'views/app_list_background.cc', 63 'views/app_list_background.cc',
61 'views/app_list_background.h', 64 'views/app_list_background.h',
62 'views/app_list_item_view.cc', 65 'views/app_list_item_view.cc',
63 'views/app_list_item_view.h', 66 'views/app_list_item_view.h',
64 'views/app_list_main_view.cc', 67 'views/app_list_main_view.cc',
65 'views/app_list_main_view.h', 68 'views/app_list_main_view.h',
69 'views/app_list_menu_views.cc',
70 'views/app_list_menu_views.h',
66 'views/app_list_view.cc', 71 'views/app_list_view.cc',
67 'views/app_list_view.h', 72 'views/app_list_view.h',
68 'views/apps_grid_view.cc', 73 'views/apps_grid_view.cc',
69 'views/apps_grid_view.h', 74 'views/apps_grid_view.h',
70 'views/cached_label.cc', 75 'views/cached_label.cc',
71 'views/cached_label.h', 76 'views/cached_label.h',
72 'views/contents_view.cc', 77 'views/contents_view.cc',
73 'views/contents_view.h', 78 'views/contents_view.h',
74 'views/page_switcher.cc', 79 'views/page_switcher.cc',
75 'views/page_switcher.h', 80 'views/page_switcher.h',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 'sources/': [ 172 'sources/': [
168 ['exclude', 'cocoa/'], 173 ['exclude', 'cocoa/'],
169 ], 174 ],
170 }], 175 }],
171 ], 176 ],
172 # Disable c4267 warnings until we fix size_t to int truncations. 177 # Disable c4267 warnings until we fix size_t to int truncations.
173 'msvs_disabled_warnings': [ 4267, ], 178 'msvs_disabled_warnings': [ 4267, ],
174 }, 179 },
175 ], 180 ],
176 } 181 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/search_builder.cc ('k') | ui/app_list/app_list_menu.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698