| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 'views/app_list_background.cc', | 60 'views/app_list_background.cc', |
| 61 'views/app_list_background.h', | 61 'views/app_list_background.h', |
| 62 'views/app_list_item_view.cc', | 62 'views/app_list_item_view.cc', |
| 63 'views/app_list_item_view.h', | 63 'views/app_list_item_view.h', |
| 64 'views/app_list_main_view.cc', | 64 'views/app_list_main_view.cc', |
| 65 'views/app_list_main_view.h', | 65 'views/app_list_main_view.h', |
| 66 'views/app_list_view.cc', | 66 'views/app_list_view.cc', |
| 67 'views/app_list_view.h', | 67 'views/app_list_view.h', |
| 68 'views/apps_grid_view.cc', | 68 'views/apps_grid_view.cc', |
| 69 'views/apps_grid_view.h', | 69 'views/apps_grid_view.h', |
| 70 'views/cached_label.cc', |
| 71 'views/cached_label.h', |
| 70 'views/contents_view.cc', | 72 'views/contents_view.cc', |
| 71 'views/contents_view.h', | 73 'views/contents_view.h', |
| 72 'views/page_switcher.cc', | 74 'views/page_switcher.cc', |
| 73 'views/page_switcher.h', | 75 'views/page_switcher.h', |
| 74 'views/pulsing_block_view.cc', | 76 'views/pulsing_block_view.cc', |
| 75 'views/pulsing_block_view.h', | 77 'views/pulsing_block_view.h', |
| 76 'views/search_box_view.cc', | 78 'views/search_box_view.cc', |
| 77 'views/search_box_view.h', | 79 'views/search_box_view.h', |
| 78 'views/search_result_list_view.cc', | 80 'views/search_result_list_view.cc', |
| 79 'views/search_result_list_view.h', | 81 'views/search_result_list_view.h', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 'sources/': [ | 167 'sources/': [ |
| 166 ['exclude', 'cocoa/'], | 168 ['exclude', 'cocoa/'], |
| 167 ], | 169 ], |
| 168 }], | 170 }], |
| 169 ], | 171 ], |
| 170 # Disable c4267 warnings until we fix size_t to int truncations. | 172 # Disable c4267 warnings until we fix size_t to int truncations. |
| 171 'msvs_disabled_warnings': [ 4267, ], | 173 'msvs_disabled_warnings': [ 4267, ], |
| 172 }, | 174 }, |
| 173 ], | 175 ], |
| 174 } | 176 } |
| OLD | NEW |