| 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 20 matching lines...) Expand all  Loading... | 
| 31   'webrtc/video', | 31   'webrtc/video', | 
| 32 ] | 32 ] | 
| 33 | 33 | 
| 34 # These filters will always be removed, even if the caller specifies a filter | 34 # These filters will always be removed, even if the caller specifies a filter | 
| 35 # set, as they are problematic or broken in some way. | 35 # set, as they are problematic or broken in some way. | 
| 36 # | 36 # | 
| 37 # Justifications for each filter: | 37 # Justifications for each filter: | 
| 38 # - build/c++11         : Rvalue ref checks are unreliable (false positives), | 38 # - build/c++11         : Rvalue ref checks are unreliable (false positives), | 
| 39 #                         include file and feature blacklists are | 39 #                         include file and feature blacklists are | 
| 40 #                         google3-specific. | 40 #                         google3-specific. | 
|  | 41 # - whitespace/operators: Same as above (doesn't seem sufficient to eliminate | 
|  | 42 #                         all move-related errors). | 
| 41 BLACKLIST_LINT_FILTERS = [ | 43 BLACKLIST_LINT_FILTERS = [ | 
| 42   '-build/c++11', | 44   '-build/c++11', | 
|  | 45   '-whitespace/operators', | 
| 43 ] | 46 ] | 
| 44 | 47 | 
| 45 # List of directories of "supported" native APIs. That means changes to headers | 48 # List of directories of "supported" native APIs. That means changes to headers | 
| 46 # will be done in a compatible way following this scheme: | 49 # will be done in a compatible way following this scheme: | 
| 47 # 1. Non-breaking changes are made. | 50 # 1. Non-breaking changes are made. | 
| 48 # 2. The old APIs as marked as deprecated (with comments). | 51 # 2. The old APIs as marked as deprecated (with comments). | 
| 49 # 3. Deprecation is announced to discuss-webrtc@googlegroups.com and | 52 # 3. Deprecation is announced to discuss-webrtc@googlegroups.com and | 
| 50 #    webrtc-users@google.com (internal list). | 53 #    webrtc-users@google.com (internal list). | 
| 51 # 4. (later) The deprecated APIs are removed. | 54 # 4. (later) The deprecated APIs are removed. | 
| 52 # Directories marked as DEPRECATED should not be used. They're only present in | 55 # Directories marked as DEPRECATED should not be used. They're only present in | 
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 514     for builder in masters[master]: | 517     for builder in masters[master]: | 
| 515       if 'presubmit' in builder: | 518       if 'presubmit' in builder: | 
| 516         # Do not trigger presubmit builders, since they're likely to fail | 519         # Do not trigger presubmit builders, since they're likely to fail | 
| 517         # (e.g. OWNERS checks before finished code review), and we're running | 520         # (e.g. OWNERS checks before finished code review), and we're running | 
| 518         # local presubmit anyway. | 521         # local presubmit anyway. | 
| 519         pass | 522         pass | 
| 520       else: | 523       else: | 
| 521         try_config[master][builder] = ['defaulttests'] | 524         try_config[master][builder] = ['defaulttests'] | 
| 522 | 525 | 
| 523   return try_config | 526   return try_config | 
| OLD | NEW | 
|---|