OLD | NEW |
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 Loading... |
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 25 matching lines...) Expand all Loading... |
118 'views/search_result_actions_view.cc', | 121 'views/search_result_actions_view.cc', |
119 'views/search_result_actions_view.h', | 122 'views/search_result_actions_view.h', |
120 'views/search_result_list_view.cc', | 123 'views/search_result_list_view.cc', |
121 'views/search_result_list_view.h', | 124 'views/search_result_list_view.h', |
122 'views/search_result_list_view_delegate.h', | 125 'views/search_result_list_view_delegate.h', |
123 'views/search_result_view.cc', | 126 'views/search_result_view.cc', |
124 'views/search_result_view.h', | 127 'views/search_result_view.h', |
125 'views/search_result_view_delegate.h', | 128 'views/search_result_view_delegate.h', |
126 'views/signin_view.cc', | 129 'views/signin_view.cc', |
127 'views/signin_view.h', | 130 'views/signin_view.h', |
| 131 'views/speech_view.cc', |
| 132 'views/speech_view.h', |
128 ], | 133 ], |
129 'conditions': [ | 134 'conditions': [ |
130 ['use_aura==1', { | 135 ['use_aura==1', { |
131 'dependencies': [ | 136 'dependencies': [ |
132 '../aura/aura.gyp:aura', | 137 '../aura/aura.gyp:aura', |
133 ], | 138 ], |
134 }], | 139 }], |
135 ['toolkit_views==1', { | 140 ['toolkit_views==1', { |
136 'dependencies': [ | 141 'dependencies': [ |
137 '../../content/content.gyp:content', | 142 '../../content/content.gyp:content', |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 'dependencies': [ | 267 'dependencies': [ |
263 '../../base/allocator/allocator.gyp:allocator', | 268 '../../base/allocator/allocator.gyp:allocator', |
264 ], | 269 ], |
265 }], | 270 }], |
266 ], | 271 ], |
267 # Disable c4267 warnings until we fix size_t to int truncations. | 272 # Disable c4267 warnings until we fix size_t to int truncations. |
268 'msvs_disabled_warnings': [ 4267, ], | 273 'msvs_disabled_warnings': [ 4267, ], |
269 }, | 274 }, |
270 ], | 275 ], |
271 } | 276 } |
OLD | NEW |