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

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

Issue 105773004: Introduces the speech recognition UI to app_list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'pagination_model.cc', 73 'pagination_model.cc',
74 'pagination_model.h', 74 'pagination_model.h',
75 'pagination_model_observer.h', 75 'pagination_model_observer.h',
76 'search_box_model.cc', 76 'search_box_model.cc',
77 'search_box_model.h', 77 'search_box_model.h',
78 'search_box_model_observer.h', 78 'search_box_model_observer.h',
79 'search_result.cc', 79 'search_result.cc',
80 'search_result.h', 80 'search_result.h',
81 'signin_delegate.cc', 81 'signin_delegate.cc',
82 'signin_delegate.h', 82 'signin_delegate.h',
83 'speech_ui_model.cc',
84 'speech_ui_model.h',
85 'speech_ui_model_observer.h',
83 'views/apps_container_view.cc', 86 'views/apps_container_view.cc',
84 'views/apps_container_view.h', 87 'views/apps_container_view.h',
85 'views/app_list_background.cc', 88 'views/app_list_background.cc',
86 'views/app_list_background.h', 89 'views/app_list_background.h',
87 'views/app_list_drag_and_drop_host.h', 90 'views/app_list_drag_and_drop_host.h',
88 'views/app_list_folder_view.cc', 91 'views/app_list_folder_view.cc',
89 'views/app_list_folder_view.h', 92 'views/app_list_folder_view.h',
90 'views/app_list_item_view.cc', 93 'views/app_list_item_view.cc',
91 'views/app_list_item_view.h', 94 'views/app_list_item_view.h',
92 'views/app_list_main_view.cc', 95 'views/app_list_main_view.cc',
(...skipping 24 matching lines...) Expand all
117 'views/search_result_actions_view.cc', 120 'views/search_result_actions_view.cc',
118 'views/search_result_actions_view.h', 121 'views/search_result_actions_view.h',
119 'views/search_result_list_view.cc', 122 'views/search_result_list_view.cc',
120 'views/search_result_list_view.h', 123 'views/search_result_list_view.h',
121 'views/search_result_list_view_delegate.h', 124 'views/search_result_list_view_delegate.h',
122 'views/search_result_view.cc', 125 'views/search_result_view.cc',
123 'views/search_result_view.h', 126 'views/search_result_view.h',
124 'views/search_result_view_delegate.h', 127 'views/search_result_view_delegate.h',
125 'views/signin_view.cc', 128 'views/signin_view.cc',
126 'views/signin_view.h', 129 'views/signin_view.h',
130 'views/speech_view.cc',
131 'views/speech_view.h',
127 ], 132 ],
128 'conditions': [ 133 'conditions': [
129 ['use_aura==1', { 134 ['use_aura==1', {
130 'dependencies': [ 135 'dependencies': [
131 '../aura/aura.gyp:aura', 136 '../aura/aura.gyp:aura',
132 ], 137 ],
133 }], 138 }],
134 ['toolkit_views==1', { 139 ['toolkit_views==1', {
135 'dependencies': [ 140 'dependencies': [
136 '../../content/content.gyp:content', 141 '../../content/content.gyp:content',
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 'dependencies': [ 266 'dependencies': [
262 '../../base/allocator/allocator.gyp:allocator', 267 '../../base/allocator/allocator.gyp:allocator',
263 ], 268 ],
264 }], 269 }],
265 ], 270 ],
266 # Disable c4267 warnings until we fix size_t to int truncations. 271 # Disable c4267 warnings until we fix size_t to int truncations.
267 'msvs_disabled_warnings': [ 4267, ], 272 'msvs_disabled_warnings': [ 4267, ],
268 }, 273 },
269 ], 274 ],
270 } 275 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698