perftest.py (512B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 6 def is_external_browser(label): 7 if any( 8 external_browser in label 9 for external_browser in ( 10 "safari", 11 "safari-tp", 12 "chrome", 13 "custom-car", 14 "chrome-m", 15 "cstm-car-m", 16 ) 17 ): 18 return True 19 return False