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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 'target_name': 'app_list_unittests', | 163 'target_name': 'app_list_unittests', |
164 'type': 'executable', | 164 'type': 'executable', |
165 'dependencies': [ | 165 'dependencies': [ |
166 '../../base/base.gyp:base', | 166 '../../base/base.gyp:base', |
167 '../../base/base.gyp:test_support_base', | 167 '../../base/base.gyp:test_support_base', |
168 # TODO: Remove this dependency. See comment for views_unittests. | 168 # TODO: Remove this dependency. See comment for views_unittests. |
169 '../../chrome/chrome_resources.gyp:packed_resources', | 169 '../../chrome/chrome_resources.gyp:packed_resources', |
170 '../../skia/skia.gyp:skia', | 170 '../../skia/skia.gyp:skia', |
171 '../../testing/gtest.gyp:gtest', | 171 '../../testing/gtest.gyp:gtest', |
172 '../compositor/compositor.gyp:compositor', | 172 '../compositor/compositor.gyp:compositor', |
173 '../ui.gyp:run_ui_unittests', | |
174 '../ui.gyp:ui', | 173 '../ui.gyp:ui', |
175 '../ui.gyp:ui_resources', | 174 '../ui.gyp:ui_resources', |
176 '../ui.gyp:ui_test_support', | 175 '../ui_unittests.gyp:run_ui_unittests', |
| 176 '../ui_unittests.gyp:ui_test_support', |
177 'app_list', | 177 'app_list', |
178 ], | 178 ], |
179 'sources': [ | 179 'sources': [ |
180 'app_list_model_unittest.cc', | 180 'app_list_model_unittest.cc', |
181 'pagination_model_unittest.cc', | 181 'pagination_model_unittest.cc', |
182 'test/app_list_test_model.cc', | 182 'test/app_list_test_model.cc', |
183 'test/app_list_test_model.h', | 183 'test/app_list_test_model.h', |
184 'test/app_list_test_view_delegate.cc', | 184 'test/app_list_test_view_delegate.cc', |
185 'test/app_list_test_view_delegate.h', | 185 'test/app_list_test_view_delegate.h', |
186 'cocoa/app_list_view_controller_unittest.mm', | 186 'cocoa/app_list_view_controller_unittest.mm', |
(...skipping 16 matching lines...) Expand all Loading... |
203 '../../content/content.gyp:content', | 203 '../../content/content.gyp:content', |
204 '../../content/content.gyp:content_browser', | 204 '../../content/content.gyp:content_browser', |
205 ], | 205 ], |
206 }, { # toolkit_views==0 | 206 }, { # toolkit_views==0 |
207 'sources/': [ | 207 'sources/': [ |
208 ['exclude', 'views/'], | 208 ['exclude', 'views/'], |
209 ] | 209 ] |
210 }], | 210 }], |
211 ['OS=="mac"', { | 211 ['OS=="mac"', { |
212 'dependencies': [ | 212 'dependencies': [ |
213 '../ui.gyp:ui_test_support', | 213 '../ui_unittests.gyp:ui_test_support', |
214 ], | 214 ], |
215 'conditions': [ | 215 'conditions': [ |
216 ['component=="static_library"', { | 216 ['component=="static_library"', { |
217 # Needed to link to Obj-C static libraries. | 217 # Needed to link to Obj-C static libraries. |
218 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, | 218 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, |
219 }], | 219 }], |
220 ], | 220 ], |
221 }, { # OS!="mac" | 221 }, { # OS!="mac" |
222 'sources/': [ | 222 'sources/': [ |
223 ['exclude', 'cocoa/'], | 223 ['exclude', 'cocoa/'], |
(...skipping 14 matching lines...) Expand all Loading... |
238 '../../webkit/glue/webkit_glue.gyp:glue', | 238 '../../webkit/glue/webkit_glue.gyp:glue', |
239 '../../webkit/glue/webkit_glue.gyp:glue_child', | 239 '../../webkit/glue/webkit_glue.gyp:glue_child', |
240 ], | 240 ], |
241 }], | 241 }], |
242 ], | 242 ], |
243 # Disable c4267 warnings until we fix size_t to int truncations. | 243 # Disable c4267 warnings until we fix size_t to int truncations. |
244 'msvs_disabled_warnings': [ 4267, ], | 244 'msvs_disabled_warnings': [ 4267, ], |
245 }, | 245 }, |
246 ], | 246 ], |
247 } | 247 } |
OLD | NEW |