| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 }], | 248 }], |
| 249 # See http://crbug.com/162998#c4 for why this is needed. | 249 # See http://crbug.com/162998#c4 for why this is needed. |
| 250 ['OS=="linux" and use_allocator!="none"', { | 250 ['OS=="linux" and use_allocator!="none"', { |
| 251 'dependencies': [ | 251 'dependencies': [ |
| 252 '../../base/allocator/allocator.gyp:allocator', | 252 '../../base/allocator/allocator.gyp:allocator', |
| 253 ], | 253 ], |
| 254 }], | 254 }], |
| 255 ], | 255 ], |
| 256 }, # target_name: message_center_unittests | 256 }, # target_name: message_center_unittests |
| 257 ], | 257 ], |
| 258 'conditions': [ |
| 259 ['test_isolation_mode != "noop"', { |
| 260 'targets': [ |
| 261 { |
| 262 'target_name': 'message_center_unittests_run', |
| 263 'type': 'none', |
| 264 'dependencies': [ |
| 265 'message_center_unittests', |
| 266 ], |
| 267 'includes': [ |
| 268 '../../build/isolate.gypi', |
| 269 ], |
| 270 'sources': [ |
| 271 'message_center_unittests.isolate', |
| 272 ], |
| 273 'conditions': [ |
| 274 ['use_x11 == 1', { |
| 275 'dependencies': [ |
| 276 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 277 ], |
| 278 }], |
| 279 ], |
| 280 }, |
| 281 ], |
| 282 }], |
| 283 ], |
| 258 } | 284 } |
| OLD | NEW |