| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 5 'variables': { |
| 6 'chrome_browser_extensions_test_support_sources': [ | 6 'chrome_browser_extensions_test_support_sources': [ |
| 7 # A list of sources which is shared between different browser tests. | 7 # A list of sources which is shared between different browser tests. |
| 8 'browser/apps/app_browsertest_util.cc', | 8 'browser/apps/app_browsertest_util.cc', |
| 9 'browser/apps/app_browsertest_util.h', | 9 'browser/apps/app_browsertest_util.h', |
| 10 'browser/extensions/browsertest_util.cc', | 10 'browser/extensions/browsertest_util.cc', |
| (...skipping 1811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1822 ], | 1822 ], |
| 1823 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1823 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 1824 'msvs_disabled_warnings': [ 4267, ], | 1824 'msvs_disabled_warnings': [ 4267, ], |
| 1825 }, | 1825 }, |
| 1826 { | 1826 { |
| 1827 # Executable that runs each browser test in a new process. | 1827 # Executable that runs each browser test in a new process. |
| 1828 'target_name': 'browser_tests', | 1828 'target_name': 'browser_tests', |
| 1829 'type': 'executable', | 1829 'type': 'executable', |
| 1830 'dependencies': [ | 1830 'dependencies': [ |
| 1831 'browser', | 1831 'browser', |
| 1832 'chrome_resources.gyp:browser_tests_pak', |
| 1832 'chrome_resources.gyp:chrome_resources', | 1833 'chrome_resources.gyp:chrome_resources', |
| 1833 'chrome_resources.gyp:chrome_strings', | 1834 'chrome_resources.gyp:chrome_strings', |
| 1834 'chrome_resources.gyp:packed_extra_resources', | 1835 'chrome_resources.gyp:packed_extra_resources', |
| 1835 'chrome_resources.gyp:packed_resources', | 1836 'chrome_resources.gyp:packed_resources', |
| 1836 'common/extensions/api/api.gyp:chrome_api', | 1837 'common/extensions/api/api.gyp:chrome_api', |
| 1837 'renderer', | 1838 'renderer', |
| 1838 'test/perf/perf_test.gyp:*', | 1839 'test/perf/perf_test.gyp:*', |
| 1839 'test_support_common', | 1840 'test_support_common', |
| 1840 'test_support_sync_integration', | 1841 'test_support_sync_integration', |
| 1841 '../base/base.gyp:base', | 1842 '../base/base.gyp:base', |
| (...skipping 1370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3212 ['enable_webrtc==1', { | 3213 ['enable_webrtc==1', { |
| 3213 'dependencies': [ | 3214 'dependencies': [ |
| 3214 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' | 3215 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' |
| 3215 ] | 3216 ] |
| 3216 }], | 3217 }], |
| 3217 ], | 3218 ], |
| 3218 }] | 3219 }] |
| 3219 }], | 3220 }], |
| 3220 ], # 'conditions' | 3221 ], # 'conditions' |
| 3221 } | 3222 } |
| OLD | NEW |