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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 }, | 136 }, |
137 { | 137 { |
138 'target_name': 'app_list_unittests', | 138 'target_name': 'app_list_unittests', |
139 'type': 'executable', | 139 'type': 'executable', |
140 'dependencies': [ | 140 'dependencies': [ |
141 '../../base/base.gyp:base', | 141 '../../base/base.gyp:base', |
142 '../../base/base.gyp:test_support_base', | 142 '../../base/base.gyp:test_support_base', |
143 '../../skia/skia.gyp:skia', | 143 '../../skia/skia.gyp:skia', |
144 '../../testing/gtest.gyp:gtest', | 144 '../../testing/gtest.gyp:gtest', |
145 '../compositor/compositor.gyp:compositor', | 145 '../compositor/compositor.gyp:compositor', |
| 146 '../compositor/compositor.gyp:compositor_test_support', |
146 '../ui.gyp:run_ui_unittests', | 147 '../ui.gyp:run_ui_unittests', |
147 'app_list', | 148 'app_list', |
148 ], | 149 ], |
149 'sources': [ | 150 'sources': [ |
150 'pagination_model_unittest.cc', | 151 'pagination_model_unittest.cc', |
151 'test/app_list_test_model.cc', | 152 'test/app_list_test_model.cc', |
152 'test/app_list_test_model.h', | 153 'test/app_list_test_model.h', |
153 'test/app_list_test_view_delegate.cc', | 154 'test/app_list_test_view_delegate.cc', |
154 'test/app_list_test_view_delegate.h', | 155 'test/app_list_test_view_delegate.h', |
155 'cocoa/app_list_view_controller_unittest.mm', | 156 'cocoa/app_list_view_controller_unittest.mm', |
(...skipping 30 matching lines...) Expand all Loading... |
186 'sources/': [ | 187 'sources/': [ |
187 ['exclude', 'cocoa/'], | 188 ['exclude', 'cocoa/'], |
188 ], | 189 ], |
189 }], | 190 }], |
190 ], | 191 ], |
191 # Disable c4267 warnings until we fix size_t to int truncations. | 192 # Disable c4267 warnings until we fix size_t to int truncations. |
192 'msvs_disabled_warnings': [ 4267, ], | 193 'msvs_disabled_warnings': [ 4267, ], |
193 }, | 194 }, |
194 ], | 195 ], |
195 } | 196 } |
OLD | NEW |