| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 'pagination_model.h', | 42 'pagination_model.h', |
| 43 'pagination_model_observer.h', | 43 'pagination_model_observer.h', |
| 44 'search_box_model.cc', | 44 'search_box_model.cc', |
| 45 'search_box_model.h', | 45 'search_box_model.h', |
| 46 'search_box_model_observer.h', | 46 'search_box_model_observer.h', |
| 47 'search_box_view_delegate.h', | 47 'search_box_view_delegate.h', |
| 48 'search_result.cc', | 48 'search_result.cc', |
| 49 'search_result.h', | 49 'search_result.h', |
| 50 'search_result_list_view_delegate.h', | 50 'search_result_list_view_delegate.h', |
| 51 'search_result_view_delegate.h', | 51 'search_result_view_delegate.h', |
| 52 'signin_delegate.cc', | |
| 53 'signin_delegate.h', | |
| 54 'signin_delegate_observer.h', | |
| 55 'views/app_list_background.cc', | 52 'views/app_list_background.cc', |
| 56 'views/app_list_background.h', | 53 'views/app_list_background.h', |
| 57 'views/app_list_item_view.cc', | 54 'views/app_list_item_view.cc', |
| 58 'views/app_list_item_view.h', | 55 'views/app_list_item_view.h', |
| 59 'views/app_list_main_view.cc', | 56 'views/app_list_main_view.cc', |
| 60 'views/app_list_main_view.h', | 57 'views/app_list_main_view.h', |
| 61 'views/app_list_view.cc', | 58 'views/app_list_view.cc', |
| 62 'views/app_list_view.h', | 59 'views/app_list_view.h', |
| 63 'views/apps_grid_view.cc', | 60 'views/apps_grid_view.cc', |
| 64 'views/apps_grid_view.h', | 61 'views/apps_grid_view.h', |
| 65 'views/contents_view.cc', | 62 'views/contents_view.cc', |
| 66 'views/contents_view.h', | 63 'views/contents_view.h', |
| 67 'views/page_switcher.cc', | 64 'views/page_switcher.cc', |
| 68 'views/page_switcher.h', | 65 'views/page_switcher.h', |
| 69 'views/pulsing_block_view.cc', | 66 'views/pulsing_block_view.cc', |
| 70 'views/pulsing_block_view.h', | 67 'views/pulsing_block_view.h', |
| 71 'views/search_box_view.cc', | 68 'views/search_box_view.cc', |
| 72 'views/search_box_view.h', | 69 'views/search_box_view.h', |
| 73 'views/search_result_list_view.cc', | 70 'views/search_result_list_view.cc', |
| 74 'views/search_result_list_view.h', | 71 'views/search_result_list_view.h', |
| 75 'views/search_result_view.cc', | 72 'views/search_result_view.cc', |
| 76 'views/search_result_view.h', | 73 'views/search_result_view.h', |
| 77 'views/signin_view.cc', | |
| 78 'views/signin_view.h', | |
| 79 ], | 74 ], |
| 80 'conditions': [ | 75 'conditions': [ |
| 81 ['use_aura==1', { | 76 ['use_aura==1', { |
| 82 'dependencies': [ | 77 'dependencies': [ |
| 83 '../aura/aura.gyp:aura', | 78 '../aura/aura.gyp:aura', |
| 84 ], | 79 ], |
| 85 }], | 80 }], |
| 86 ['toolkit_views==1', { | 81 ['toolkit_views==1', { |
| 87 'dependencies': [ | 82 'dependencies': [ |
| 88 '../../content/content.gyp:content_browser', | |
| 89 '../views/controls/webview/webview.gyp:webview', | |
| 90 '../views/views.gyp:views', | 83 '../views/views.gyp:views', |
| 91 ], | 84 ], |
| 92 }, { # toolkit_views==0 | 85 }, { # toolkit_views==0 |
| 93 'sources/': [ | 86 'sources/': [ |
| 94 ['exclude', 'views/'], | 87 ['exclude', 'views/'], |
| 95 ], | 88 ], |
| 96 }], | 89 }], |
| 97 ['OS=="mac"', { | 90 ['OS=="mac"', { |
| 98 'dependencies': [ | 91 'dependencies': [ |
| 99 '../ui.gyp:ui_cocoa_third_party_toolkits', | 92 '../ui.gyp:ui_cocoa_third_party_toolkits', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 ], | 141 ], |
| 149 }, { # OS!="mac" | 142 }, { # OS!="mac" |
| 150 'sources/': [ | 143 'sources/': [ |
| 151 ['exclude', 'cocoa/'], | 144 ['exclude', 'cocoa/'], |
| 152 ], | 145 ], |
| 153 }], | 146 }], |
| 154 ], | 147 ], |
| 155 }, | 148 }, |
| 156 ], | 149 ], |
| 157 } | 150 } |
| OLD | NEW |