diff options
author | Moonchild <moonchild@palemoon.org> | 2021-10-14 23:35:18 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-04-01 15:22:15 +0200 |
commit | 39f9ab375b2bfd9e46df9695b78870cf1e9cf3c6 (patch) | |
tree | 522ad2b33de883f03a53ffa17e4d74202bcf762a /media/libyuv | |
parent | 28a3cd1028612b3b577768519d11fa6fbcda6f09 (diff) | |
download | uxp-39f9ab375b2bfd9e46df9695b78870cf1e9cf3c6.tar.gz |
Issue #1053 - Remove /dom/system/android and dependent modules,
as well as robocop.
Diffstat (limited to 'media/libyuv')
-rw-r--r-- | media/libyuv/PRESUBMIT.py | 9 | ||||
-rw-r--r-- | media/libyuv/gyp_libyuv | 2 | ||||
-rw-r--r-- | media/libyuv/setup_links.py | 21 |
3 files changed, 1 insertions, 31 deletions
diff --git a/media/libyuv/PRESUBMIT.py b/media/libyuv/PRESUBMIT.py index 58242bd984..e194fa35a6 100644 --- a/media/libyuv/PRESUBMIT.py +++ b/media/libyuv/PRESUBMIT.py @@ -50,15 +50,6 @@ def GetPreferredTryMasters(project, change): 'linux_msan', 'linux_ubsan', 'linux_ubsan_vptr', - 'android', - 'android_rel', - 'android_clang', - 'android_arm64', - 'android_mips', - 'android_x64', - 'android_x86', - 'android_gn', - 'android_gn_rel', ] if not files or all(re.search(r'[\\/]OWNERS$', f) for f in files): return {} diff --git a/media/libyuv/gyp_libyuv b/media/libyuv/gyp_libyuv index 445b924f16..bce1061a17 100644 --- a/media/libyuv/gyp_libyuv +++ b/media/libyuv/gyp_libyuv @@ -75,7 +75,7 @@ if __name__ == '__main__': # Automatically turn on crosscompile support for platforms that need it. if all(('ninja' in os.environ.get('GYP_GENERATORS', ''), - gyp_vars_dict.get('OS') in ['android', 'ios'], + gyp_vars_dict.get('OS') in ['ios'], 'GYP_CROSSCOMPILE' not in os.environ)): os.environ['GYP_CROSSCOMPILE'] = '1' diff --git a/media/libyuv/setup_links.py b/media/libyuv/setup_links.py index b2b459e60c..b3c8c9a0af 100644 --- a/media/libyuv/setup_links.py +++ b/media/libyuv/setup_links.py @@ -60,27 +60,6 @@ DIRECTORIES = [ from sync_chromium import get_target_os_list target_os = get_target_os_list() -if 'android' in target_os: - DIRECTORIES += [ - 'base', - 'third_party/android_platform', - 'third_party/android_tools', - 'third_party/appurify-python', - 'third_party/ashmem', - 'third_party/catapult', - 'third_party/icu', - 'third_party/ijar', - 'third_party/jsr-305', - 'third_party/junit', - 'third_party/libxml', - 'third_party/mockito', - 'third_party/modp_b64', - 'third_party/protobuf', - 'third_party/requests', - 'third_party/robolectric', - 'tools/android', - 'tools/grit', - ] if 'ios' in target_os: DIRECTORIES.append('third_party/class-dump') |