| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 'views/search_result_list_view.cc', | 128 'views/search_result_list_view.cc', |
| 129 'views/search_result_list_view.h', | 129 'views/search_result_list_view.h', |
| 130 'views/search_result_list_view_delegate.h', | 130 'views/search_result_list_view_delegate.h', |
| 131 'views/search_result_view.cc', | 131 'views/search_result_view.cc', |
| 132 'views/search_result_view.h', | 132 'views/search_result_view.h', |
| 133 'views/search_result_view_delegate.h', | 133 'views/search_result_view_delegate.h', |
| 134 'views/signin_view.cc', | 134 'views/signin_view.cc', |
| 135 'views/signin_view.h', | 135 'views/signin_view.h', |
| 136 'views/speech_view.cc', | 136 'views/speech_view.cc', |
| 137 'views/speech_view.h', | 137 'views/speech_view.h', |
| 138 'views/start_page_view.cc', |
| 139 'views/start_page_view.h', |
| 138 'views/top_icon_animation_view.cc', | 140 'views/top_icon_animation_view.cc', |
| 139 'views/top_icon_animation_view.h', | 141 'views/top_icon_animation_view.h', |
| 140 ], | 142 ], |
| 141 'conditions': [ | 143 'conditions': [ |
| 142 ['use_aura==1', { | 144 ['use_aura==1', { |
| 143 'dependencies': [ | 145 'dependencies': [ |
| 144 '../aura/aura.gyp:aura', | 146 '../aura/aura.gyp:aura', |
| 145 ], | 147 ], |
| 146 }], | 148 }], |
| 147 ['toolkit_views==1', { | 149 ['toolkit_views==1', { |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 'dependencies': [ | 276 'dependencies': [ |
| 275 '../../base/allocator/allocator.gyp:allocator', | 277 '../../base/allocator/allocator.gyp:allocator', |
| 276 ], | 278 ], |
| 277 }], | 279 }], |
| 278 ], | 280 ], |
| 279 # Disable c4267 warnings until we fix size_t to int truncations. | 281 # Disable c4267 warnings until we fix size_t to int truncations. |
| 280 'msvs_disabled_warnings': [ 4267, ], | 282 'msvs_disabled_warnings': [ 4267, ], |
| 281 }, | 283 }, |
| 282 ], | 284 ], |
| 283 } | 285 } |
| OLD | NEW |