| 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_dll_resource.h', | 8 'app/chrome_dll_resource.h', |
| 9 'common/pref_names.cc', | 9 'common/pref_names.cc', |
| 10 'common/pref_names.h', | 10 'common/pref_names.h', |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 'test/testing_pref_service.cc', | 121 'test/testing_pref_service.cc', |
| 122 'test/testing_pref_service.h', | 122 'test/testing_pref_service.h', |
| 123 'test/testing_profile.cc', | 123 'test/testing_profile.cc', |
| 124 'test/testing_profile.h', | 124 'test/testing_profile.h', |
| 125 'test/thread_observer_helper.h', | 125 'test/thread_observer_helper.h', |
| 126 'test/ui_test_utils.cc', | 126 'test/ui_test_utils.cc', |
| 127 'test/ui_test_utils.h', | 127 'test/ui_test_utils.h', |
| 128 'test/ui_test_utils_linux.cc', | 128 'test/ui_test_utils_linux.cc', |
| 129 'test/ui_test_utils_mac.mm', | 129 'test/ui_test_utils_mac.mm', |
| 130 'test/ui_test_utils_win.cc', | 130 'test/ui_test_utils_win.cc', |
| 131 'test/unit/chrome_test_suite.cc', |
| 132 'test/unit/chrome_test_suite.h', |
| 131 ], | 133 ], |
| 132 'conditions': [ | 134 'conditions': [ |
| 133 ['OS=="linux"', { | 135 ['OS=="linux"', { |
| 134 'dependencies': [ | 136 'dependencies': [ |
| 135 '../build/linux/system.gyp:gtk', | 137 '../build/linux/system.gyp:gtk', |
| 136 '../build/linux/system.gyp:nss', | 138 '../build/linux/system.gyp:nss', |
| 137 ], | 139 ], |
| 138 }], | 140 }], |
| 139 ['OS=="win"', { | 141 ['OS=="win"', { |
| 140 'include_dirs': [ | 142 'include_dirs': [ |
| (...skipping 1632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1773 'renderer/safe_browsing/phishing_dom_feature_extractor_browsertest.cc', | 1775 'renderer/safe_browsing/phishing_dom_feature_extractor_browsertest.cc', |
| 1774 'renderer/translate_helper_browsertest.cc', | 1776 'renderer/translate_helper_browsertest.cc', |
| 1775 'test/automation/dom_automation_browsertest.cc', | 1777 'test/automation/dom_automation_browsertest.cc', |
| 1776 'test/in_process_browser_test.cc', | 1778 'test/in_process_browser_test.cc', |
| 1777 'test/in_process_browser_test.h', | 1779 'test/in_process_browser_test.h', |
| 1778 'test/render_view_test.cc', | 1780 'test/render_view_test.cc', |
| 1779 'test/render_view_test.h', | 1781 'test/render_view_test.h', |
| 1780 'test/test_launcher/out_of_proc_test_runner.cc', | 1782 'test/test_launcher/out_of_proc_test_runner.cc', |
| 1781 'test/test_launcher/test_runner.cc', | 1783 'test/test_launcher/test_runner.cc', |
| 1782 'test/test_launcher/test_runner.h', | 1784 'test/test_launcher/test_runner.h', |
| 1783 'test/unit/chrome_test_suite.h', | |
| 1784 ], | 1785 ], |
| 1785 'conditions': [ | 1786 'conditions': [ |
| 1786 ['chromeos==0', { | 1787 ['chromeos==0', { |
| 1787 'sources/': [ | 1788 'sources/': [ |
| 1788 ['exclude', '^browser/chromeos'], | 1789 ['exclude', '^browser/chromeos'], |
| 1789 # Currently TTS extension API is supported only for chromeos. | 1790 # Currently TTS extension API is supported only for chromeos. |
| 1790 # Remove the following exclude when support for other platforms | 1791 # Remove the following exclude when support for other platforms |
| 1791 # is added. | 1792 # is added. |
| 1792 ['exclude', 'browser/extensions/extension_tts_apitest.cc'], | 1793 ['exclude', 'browser/extensions/extension_tts_apitest.cc'], |
| 1793 ], | 1794 ], |
| (...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2921 ] | 2922 ] |
| 2922 }], # 'coverage!=0' | 2923 }], # 'coverage!=0' |
| 2923 ], # 'conditions' | 2924 ], # 'conditions' |
| 2924 } | 2925 } |
| 2925 | 2926 |
| 2926 # Local Variables: | 2927 # Local Variables: |
| 2927 # tab-width:2 | 2928 # tab-width:2 |
| 2928 # indent-tabs-mode:nil | 2929 # indent-tabs-mode:nil |
| 2929 # End: | 2930 # End: |
| 2930 # vim: set expandtab tabstop=2 shiftwidth=2: | 2931 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |