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 DEPS = [ | 5 DEPS = [ |
6 'chromium', | 6 'chromium', |
7 'gclient', | 7 'gclient', |
8 'itertools', | 8 'itertools', |
9 'json', | 9 'json', |
10 'path', | 10 'path', |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
74 'compile_only': False, | 74 'compile_only': False, |
75 }, | 75 }, |
76 'chromeos_clang': { | 76 'chromeos_clang': { |
77 'chromium_config': 'chromium_chromeos_clang', | 77 'chromium_config': 'chromium_chromeos_clang', |
78 'compile_only': True, | 78 'compile_only': True, |
79 }, | 79 }, |
80 'clang': { | 80 'clang': { |
81 'chromium_config': 'chromium_clang', | 81 'chromium_config': 'chromium_clang', |
82 'compile_only': True, | 82 'compile_only': True, |
83 }, | 83 }, |
84 'compile': { | |
agable
2014/02/19 01:56:26
Seems like we can probably have a more descriptive
Paweł Hajdan Jr.
2014/02/19 02:04:40
Not sure what would be better. Keeping it short se
| |
85 'chromium_config': 'chromium', | |
86 'compile_only': True, | |
87 }, | |
84 } | 88 } |
85 | 89 |
86 | 90 |
87 def GenSteps(api): | 91 def GenSteps(api): |
88 class CheckdepsTest(api.test_utils.Test): # pylint: disable=W0232 | 92 class CheckdepsTest(api.test_utils.Test): # pylint: disable=W0232 |
89 name = 'checkdeps' | 93 name = 'checkdeps' |
90 | 94 |
91 @staticmethod | 95 @staticmethod |
92 def compile_targets(): | 96 def compile_targets(): |
93 return [] | 97 return [] |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
518 api.step_data('presubmit', retcode=1) | 522 api.step_data('presubmit', retcode=1) |
519 ) | 523 ) |
520 | 524 |
521 yield ( | 525 yield ( |
522 api.test('compile_failure') + | 526 api.test('compile_failure') + |
523 props() + | 527 props() + |
524 api.platform.name('win') + | 528 api.platform.name('win') + |
525 api.step_data('compile (with patch)', retcode=1) + | 529 api.step_data('compile (with patch)', retcode=1) + |
526 api.step_data('compile (with patch, lkcr, clobber)', retcode=1) | 530 api.step_data('compile (with patch, lkcr, clobber)', retcode=1) |
527 ) | 531 ) |
OLD | NEW |