| OLD | NEW |
| 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import json | 9 import json |
| 10 import os | 10 import os |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 'webrtc/modules/audio_device/include', | 61 'webrtc/modules/audio_device/include', |
| 62 'webrtc/modules/audio_processing/include', | 62 'webrtc/modules/audio_processing/include', |
| 63 'webrtc/modules/bitrate_controller/include', | 63 'webrtc/modules/bitrate_controller/include', |
| 64 'webrtc/modules/congestion_controller/include', | 64 'webrtc/modules/congestion_controller/include', |
| 65 'webrtc/modules/include', | 65 'webrtc/modules/include', |
| 66 'webrtc/modules/remote_bitrate_estimator/include', | 66 'webrtc/modules/remote_bitrate_estimator/include', |
| 67 'webrtc/modules/rtp_rtcp/include', | 67 'webrtc/modules/rtp_rtcp/include', |
| 68 'webrtc/modules/rtp_rtcp/source', # DEPRECATED. | 68 'webrtc/modules/rtp_rtcp/source', # DEPRECATED. |
| 69 'webrtc/modules/utility/include', | 69 'webrtc/modules/utility/include', |
| 70 'webrtc/modules/video_coding/codecs/h264/include', | 70 'webrtc/modules/video_coding/codecs/h264/include', |
| 71 'webrtc/modules/video_coding/codecs/i420/include', | |
| 72 'webrtc/modules/video_coding/codecs/vp8/include', | 71 'webrtc/modules/video_coding/codecs/vp8/include', |
| 73 'webrtc/modules/video_coding/codecs/vp9/include', | 72 'webrtc/modules/video_coding/codecs/vp9/include', |
| 74 'webrtc/modules/video_coding/include', | 73 'webrtc/modules/video_coding/include', |
| 75 'webrtc/system_wrappers/include', # DEPRECATED. | 74 'webrtc/system_wrappers/include', # DEPRECATED. |
| 76 'webrtc/voice_engine/include', | 75 'webrtc/voice_engine/include', |
| 77 ) | 76 ) |
| 78 | 77 |
| 79 | 78 |
| 80 def _VerifyNativeApiHeadersListIsValid(input_api, output_api): | 79 def _VerifyNativeApiHeadersListIsValid(input_api, output_api): |
| 81 """Ensures the list of native API header directories is up to date.""" | 80 """Ensures the list of native API header directories is up to date.""" |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 for builder in masters[master]: | 513 for builder in masters[master]: |
| 515 if 'presubmit' in builder: | 514 if 'presubmit' in builder: |
| 516 # Do not trigger presubmit builders, since they're likely to fail | 515 # Do not trigger presubmit builders, since they're likely to fail |
| 517 # (e.g. OWNERS checks before finished code review), and we're running | 516 # (e.g. OWNERS checks before finished code review), and we're running |
| 518 # local presubmit anyway. | 517 # local presubmit anyway. |
| 519 pass | 518 pass |
| 520 else: | 519 else: |
| 521 try_config[master][builder] = ['defaulttests'] | 520 try_config[master][builder] = ['defaulttests'] |
| 522 | 521 |
| 523 return try_config | 522 return try_config |
| OLD | NEW |