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