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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 'views/notifier_settings_view_unittest.cc', | 232 'views/notifier_settings_view_unittest.cc', |
233 ], | 233 ], |
234 }], | 234 }], |
235 ['notifications==0', { # Android and iOS. | 235 ['notifications==0', { # Android and iOS. |
236 'sources/': [ | 236 'sources/': [ |
237 # Exclude everything except main(). | 237 # Exclude everything except main(). |
238 ['exclude', '\\.(cc|mm)$'], | 238 ['exclude', '\\.(cc|mm)$'], |
239 ['include', '^test/run_all_unittests\\.cc$'], | 239 ['include', '^test/run_all_unittests\\.cc$'], |
240 ], | 240 ], |
241 }], | 241 }], |
242 # See http://crbug.com/162998#c4 for why this is needed. | |
243 ['OS=="linux" and use_allocator!="none"', { | |
244 'dependencies': [ | |
245 '../../base/allocator/allocator.gyp:allocator', | |
246 ], | |
247 }], | |
248 ], | 242 ], |
249 }, # target_name: message_center_unittests | 243 }, # target_name: message_center_unittests |
250 ], | 244 ], |
251 'conditions': [ | 245 'conditions': [ |
252 ['test_isolation_mode != "noop"', { | 246 ['test_isolation_mode != "noop"', { |
253 'targets': [ | 247 'targets': [ |
254 { | 248 { |
255 'target_name': 'message_center_unittests_run', | 249 'target_name': 'message_center_unittests_run', |
256 'type': 'none', | 250 'type': 'none', |
257 'dependencies': [ | 251 'dependencies': [ |
(...skipping 10 matching lines...) Expand all Loading... |
268 'dependencies': [ | 262 'dependencies': [ |
269 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 263 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
270 ], | 264 ], |
271 }], | 265 }], |
272 ], | 266 ], |
273 }, | 267 }, |
274 ], | 268 ], |
275 }], | 269 }], |
276 ], | 270 ], |
277 } | 271 } |
OLD | NEW |