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', | |
147 '../ui.gyp:run_ui_unittests', | 146 '../ui.gyp:run_ui_unittests', |
148 'app_list', | 147 'app_list', |
149 ], | 148 ], |
150 'sources': [ | 149 'sources': [ |
151 'pagination_model_unittest.cc', | 150 'pagination_model_unittest.cc', |
152 'test/app_list_test_model.cc', | 151 'test/app_list_test_model.cc', |
153 'test/app_list_test_model.h', | 152 'test/app_list_test_model.h', |
154 'test/app_list_test_view_delegate.cc', | 153 'test/app_list_test_view_delegate.cc', |
155 'test/app_list_test_view_delegate.h', | 154 'test/app_list_test_view_delegate.h', |
156 'cocoa/app_list_view_controller_unittest.mm', | 155 'cocoa/app_list_view_controller_unittest.mm', |
(...skipping 30 matching lines...) Expand all Loading... |
187 'sources/': [ | 186 'sources/': [ |
188 ['exclude', 'cocoa/'], | 187 ['exclude', 'cocoa/'], |
189 ], | 188 ], |
190 }], | 189 }], |
191 ], | 190 ], |
192 # Disable c4267 warnings until we fix size_t to int truncations. | 191 # Disable c4267 warnings until we fix size_t to int truncations. |
193 'msvs_disabled_warnings': [ 4267, ], | 192 'msvs_disabled_warnings': [ 4267, ], |
194 }, | 193 }, |
195 ], | 194 ], |
196 } | 195 } |
OLD | NEW |