| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'browser_tests_sources_views_specific': [ | 7 'browser_tests_sources_views_specific': [ |
| 8 'browser/extensions/browser_action_test_util_views.cc', | 8 'browser/extensions/browser_action_test_util_views.cc', |
| 9 'browser/views/browser_actions_container_browsertest.cc', | 9 'browser/views/browser_actions_container_browsertest.cc', |
| 10 ], | 10 ], |
| (...skipping 1786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1797 ['win_use_allocator_shim==1', { | 1797 ['win_use_allocator_shim==1', { |
| 1798 'dependencies': [ | 1798 'dependencies': [ |
| 1799 '<(allocator_target)', | 1799 '<(allocator_target)', |
| 1800 ], | 1800 ], |
| 1801 }], | 1801 }], |
| 1802 ], | 1802 ], |
| 1803 }], # OS="win" | 1803 }], # OS="win" |
| 1804 ], # conditions | 1804 ], # conditions |
| 1805 }, | 1805 }, |
| 1806 { | 1806 { |
| 1807 'target_name': 'notifier_unit_tests', | |
| 1808 'type': 'executable', | |
| 1809 'sources': [ | |
| 1810 # TODO(akalin): Write our own test suite and runner. | |
| 1811 '../base/test/run_all_unittests.cc', | |
| 1812 '../base/test/test_suite.h', | |
| 1813 'common/net/notifier/listener/talk_mediator_unittest.cc', | |
| 1814 'common/net/notifier/listener/send_update_task_unittest.cc', | |
| 1815 'common/net/notifier/listener/subscribe_task_unittest.cc', | |
| 1816 'common/net/notifier/listener/xml_element_util_unittest.cc', | |
| 1817 ], | |
| 1818 'include_dirs': [ | |
| 1819 '..', | |
| 1820 ], | |
| 1821 'dependencies': [ | |
| 1822 'notifier', | |
| 1823 '../base/base.gyp:base', | |
| 1824 '../testing/gmock.gyp:gmock', | |
| 1825 '../testing/gtest.gyp:gtest', | |
| 1826 '../third_party/libjingle/libjingle.gyp:libjingle', | |
| 1827 ], | |
| 1828 # TODO(akalin): Remove this once we have our own test suite and | |
| 1829 # runner. | |
| 1830 'conditions': [ | |
| 1831 ['OS == "linux" or OS == "freebsd" or OS == "openbsd" or OS == "solaris"
', { | |
| 1832 'dependencies': [ | |
| 1833 # Needed to handle the #include chain: | |
| 1834 # base/test/test_suite.h | |
| 1835 # gtk/gtk.h | |
| 1836 '../build/linux/system.gyp:gtk', | |
| 1837 ], | |
| 1838 }], | |
| 1839 ], | |
| 1840 }, | |
| 1841 { | |
| 1842 'target_name': 'sync_unit_tests', | 1807 'target_name': 'sync_unit_tests', |
| 1843 'type': 'executable', | 1808 'type': 'executable', |
| 1844 'sources': [ | 1809 'sources': [ |
| 1845 'app/breakpad_mac_stubs.mm', | 1810 'app/breakpad_mac_stubs.mm', |
| 1846 'browser/sync/engine/all_status_unittest.cc', | 1811 'browser/sync/engine/all_status_unittest.cc', |
| 1847 'browser/sync/engine/apply_updates_command_unittest.cc', | 1812 'browser/sync/engine/apply_updates_command_unittest.cc', |
| 1848 'browser/sync/engine/auth_watcher_unittest.cc', | 1813 'browser/sync/engine/auth_watcher_unittest.cc', |
| 1849 'browser/sync/engine/download_updates_command_unittest.cc', | 1814 'browser/sync/engine/download_updates_command_unittest.cc', |
| 1850 'browser/sync/engine/mock_model_safe_workers.h', | 1815 'browser/sync/engine/mock_model_safe_workers.h', |
| 1851 'browser/sync/engine/process_commit_response_command_unittest.cc', | 1816 'browser/sync/engine/process_commit_response_command_unittest.cc', |
| (...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2550 ] | 2515 ] |
| 2551 }], # 'coverage!=0' | 2516 }], # 'coverage!=0' |
| 2552 ], # 'conditions' | 2517 ], # 'conditions' |
| 2553 } | 2518 } |
| 2554 | 2519 |
| 2555 # Local Variables: | 2520 # Local Variables: |
| 2556 # tab-width:2 | 2521 # tab-width:2 |
| 2557 # indent-tabs-mode:nil | 2522 # indent-tabs-mode:nil |
| 2558 # End: | 2523 # End: |
| 2559 # vim: set expandtab tabstop=2 shiftwidth=2: | 2524 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |