| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 'cocoa/settings_controller_unittest.mm', | 184 'cocoa/settings_controller_unittest.mm', |
| 185 'cocoa/status_item_view_unittest.mm', | 185 'cocoa/status_item_view_unittest.mm', |
| 186 'cocoa/tray_controller_unittest.mm', | 186 'cocoa/tray_controller_unittest.mm', |
| 187 'cocoa/tray_view_controller_unittest.mm', | 187 'cocoa/tray_view_controller_unittest.mm', |
| 188 'message_center_tray_unittest.cc', | 188 'message_center_tray_unittest.cc', |
| 189 'message_center_impl_unittest.cc', | 189 'message_center_impl_unittest.cc', |
| 190 'notification_list_unittest.cc', | 190 'notification_list_unittest.cc', |
| 191 'test/run_all_unittests.cc', | 191 'test/run_all_unittests.cc', |
| 192 ], | 192 ], |
| 193 'conditions': [ | 193 'conditions': [ |
| 194 ['use_glib == 1 or OS == "ios"', { | 194 ['desktop_linux == 1 or chromeos == 1 or OS=="ios"', { |
| 195 'dependencies': [ | 195 'dependencies': [ |
| 196 '../base/strings/ui_strings.gyp:ui_unittest_strings', | 196 '../base/strings/ui_strings.gyp:ui_unittest_strings', |
| 197 ], | 197 ], |
| 198 }], | 198 }], |
| 199 ['OS=="mac"', { | 199 ['OS=="mac"', { |
| 200 'dependencies': [ | 200 'dependencies': [ |
| 201 '../ui_unittests.gyp:ui_test_support', | 201 '../ui_unittests.gyp:ui_test_support', |
| 202 ], | 202 ], |
| 203 }], | 203 }], |
| 204 ['toolkit_views==1', { | 204 ['toolkit_views==1', { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 226 # See http://crbug.com/162998#c4 for why this is needed. | 226 # See http://crbug.com/162998#c4 for why this is needed. |
| 227 ['OS=="linux" and linux_use_tcmalloc==1', { | 227 ['OS=="linux" and linux_use_tcmalloc==1', { |
| 228 'dependencies': [ | 228 'dependencies': [ |
| 229 '../../base/allocator/allocator.gyp:allocator', | 229 '../../base/allocator/allocator.gyp:allocator', |
| 230 ], | 230 ], |
| 231 }], | 231 }], |
| 232 ], | 232 ], |
| 233 }, # target_name: message_center_unittests | 233 }, # target_name: message_center_unittests |
| 234 ], | 234 ], |
| 235 } | 235 } |
| OLD | NEW |