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 'pyautolib_sources': [ | 7 'pyautolib_sources': [ |
8 'app/chrome_command_ids.h', | 8 'app/chrome_command_ids.h', |
9 'app/chrome_dll_resource.h', | 9 'app/chrome_dll_resource.h', |
10 'common/automation_constants.h', | 10 'common/automation_constants.h', |
(...skipping 1672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1683 '../testing/gtest_mac_unittest.mm', | 1683 '../testing/gtest_mac_unittest.mm', |
1684 '../third_party/cld/encodings/compact_lang_det/compact_lang_det_unittest
_small.cc', | 1684 '../third_party/cld/encodings/compact_lang_det/compact_lang_det_unittest
_small.cc', |
1685 # TODO(jcampan): Create a separate unit test for these to allow us to | 1685 # TODO(jcampan): Create a separate unit test for these to allow us to |
1686 # test views completely decoupled from chrome. | 1686 # test views completely decoupled from chrome. |
1687 '../views/animation/bounds_animator_unittest.cc', | 1687 '../views/animation/bounds_animator_unittest.cc', |
1688 '../views/box_layout_unittest.cc', | 1688 '../views/box_layout_unittest.cc', |
1689 '../views/controls/label_unittest.cc', | 1689 '../views/controls/label_unittest.cc', |
1690 '../views/controls/progress_bar_unittest.cc', | 1690 '../views/controls/progress_bar_unittest.cc', |
1691 '../views/controls/tabbed_pane/tabbed_pane_unittest.cc', | 1691 '../views/controls/tabbed_pane/tabbed_pane_unittest.cc', |
1692 '../views/controls/table/table_view_unittest.cc', | 1692 '../views/controls/table/table_view_unittest.cc', |
| 1693 '../views/controls/textfield/textfield_views_model_unittest.cc', |
| 1694 '../views/controls/textfield/native_textfield_views_unittest.cc', |
1693 '../views/focus/accelerator_handler_gtk_unittest.cc', | 1695 '../views/focus/accelerator_handler_gtk_unittest.cc', |
1694 '../views/focus/focus_manager_unittest.cc', | 1696 '../views/focus/focus_manager_unittest.cc', |
1695 '../views/grid_layout_unittest.cc', | 1697 '../views/grid_layout_unittest.cc', |
1696 '../views/view_unittest.cc', | 1698 '../views/view_unittest.cc', |
1697 ], | 1699 ], |
1698 'conditions': [ | 1700 'conditions': [ |
1699 ['touchui==1', { | 1701 ['touchui==1', { |
1700 'sources!': [ | 1702 'sources!': [ |
1701 'browser/renderer_host/gtk_im_context_wrapper_unittest.cc', | 1703 'browser/renderer_host/gtk_im_context_wrapper_unittest.cc', |
1702 ], | 1704 ], |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1764 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1766 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
1765 ], | 1767 ], |
1766 'sources!': [ | 1768 'sources!': [ |
1767 'browser/printing/print_job_unittest.cc', | 1769 'browser/printing/print_job_unittest.cc', |
1768 ], | 1770 ], |
1769 }, { # else: OS != "linux" | 1771 }, { # else: OS != "linux" |
1770 'sources!': [ | 1772 'sources!': [ |
1771 'browser/gtk/tabs/tab_renderer_gtk_unittest.cc', | 1773 'browser/gtk/tabs/tab_renderer_gtk_unittest.cc', |
1772 'browser/renderer_host/gtk_key_bindings_handler_unittest.cc', | 1774 'browser/renderer_host/gtk_key_bindings_handler_unittest.cc', |
1773 '../views/focus/accelerator_handler_gtk_unittest.cc', | 1775 '../views/focus/accelerator_handler_gtk_unittest.cc', |
| 1776 '../views/controls/textfield/textfield_views_model_unittest.cc', |
| 1777 '../views/controls/textfield/native_textfield_views_unittest.cc', |
1774 ], | 1778 ], |
1775 }], | 1779 }], |
1776 ['OS=="linux" or OS=="freebsd"', { | 1780 ['OS=="linux" or OS=="freebsd"', { |
1777 'conditions': [ | 1781 'conditions': [ |
1778 ['linux_use_tcmalloc==1', { | 1782 ['linux_use_tcmalloc==1', { |
1779 'dependencies': [ | 1783 'dependencies': [ |
1780 '../base/allocator/allocator.gyp:allocator', | 1784 '../base/allocator/allocator.gyp:allocator', |
1781 ], | 1785 ], |
1782 }], | 1786 }], |
1783 ], | 1787 ], |
(...skipping 1780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3564 ] | 3568 ] |
3565 }], # 'coverage!=0' | 3569 }], # 'coverage!=0' |
3566 ], # 'conditions' | 3570 ], # 'conditions' |
3567 } | 3571 } |
3568 | 3572 |
3569 # Local Variables: | 3573 # Local Variables: |
3570 # tab-width:2 | 3574 # tab-width:2 |
3571 # indent-tabs-mode:nil | 3575 # indent-tabs-mode:nil |
3572 # End: | 3576 # End: |
3573 # vim: set expandtab tabstop=2 shiftwidth=2: | 3577 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |