├── .gitignore ├── Changes.md ├── CleanSpec.mk ├── Deprecation.md ├── METADATA ├── OWNERS ├── PREUPLOAD.cfg ├── README.md ├── Usage.txt ├── banchanHelp.sh ├── common ├── core.mk ├── json.mk ├── math.mk └── strings.mk ├── core ├── BUILD.bazel ├── LINUX_KERNEL_COPYING ├── Makefile ├── OWNERS ├── WINPTHREADS_COPYING ├── aapt2.mk ├── aapt_flags.mk ├── allowed_ndk_types.mk ├── android_manifest.mk ├── android_soong_config_vars.mk ├── app_certificate_validate.mk ├── app_prebuilt_internal.mk ├── art_config.mk ├── artifact_path_requirements.mk ├── autogen_test_config.mk ├── base_rules.mk ├── binary.mk ├── board_config.mk ├── board_config_wifi.mk ├── build-system.html ├── build_id.mk ├── build_rro_package.mk ├── cc_prebuilt_internal.mk ├── ccache.mk ├── check_elf_file.mk ├── checktree ├── clang │ ├── HOST_x86.mk │ ├── HOST_x86_64.mk │ ├── TARGET_arm.mk │ ├── TARGET_arm64.mk │ ├── TARGET_riscv64.mk │ ├── TARGET_x86.mk │ ├── TARGET_x86_64.mk │ ├── config.mk │ └── tidy.mk ├── cleanbuild.mk ├── cleanspec.mk ├── clear_vars.mk ├── combo │ ├── HOST_darwin-x86_64.mk │ ├── HOST_linux-x86.mk │ ├── HOST_linux-x86_64.mk │ ├── TARGET_linux-arm.mk │ ├── TARGET_linux-arm64.mk │ ├── TARGET_linux-riscv64.mk │ ├── TARGET_linux-x86.mk │ ├── TARGET_linux-x86_64.mk │ ├── arch │ │ ├── arm │ │ │ ├── armv7-a-neon.mk │ │ │ ├── armv8-2a.mk │ │ │ └── armv8-a.mk │ │ ├── arm64 │ │ │ ├── armv8-2a-dotprod.mk │ │ │ ├── armv8-2a.mk │ │ │ ├── armv8-a-branchprot.mk │ │ │ ├── armv8-a.mk │ │ │ └── armv9-a.mk │ │ ├── riscv64 │ │ │ └── riscv64.mk │ │ ├── x86 │ │ │ ├── amberlake.mk │ │ │ ├── atom.mk │ │ │ ├── broadwell.mk │ │ │ ├── goldmont-plus.mk │ │ │ ├── goldmont.mk │ │ │ ├── haswell.mk │ │ │ ├── icelake.mk │ │ │ ├── ivybridge.mk │ │ │ ├── kabylake.mk │ │ │ ├── sandybridge.mk │ │ │ ├── silvermont.mk │ │ │ ├── skylake.mk │ │ │ ├── stoneyridge.mk │ │ │ ├── tigerlake.mk │ │ │ ├── tremont.mk │ │ │ ├── whiskeylake.mk │ │ │ ├── x86.mk │ │ │ └── x86_64.mk │ │ └── x86_64 │ │ │ ├── amberlake.mk │ │ │ ├── broadwell.mk │ │ │ ├── goldmont-plus.mk │ │ │ ├── goldmont.mk │ │ │ ├── haswell.mk │ │ │ ├── icelake.mk │ │ │ ├── ivybridge.mk │ │ │ ├── kabylake.mk │ │ │ ├── sandybridge.mk │ │ │ ├── silvermont.mk │ │ │ ├── skylake.mk │ │ │ ├── stoneyridge.mk │ │ │ ├── tigerlake.mk │ │ │ ├── tremont.mk │ │ │ ├── whiskeylake.mk │ │ │ └── x86_64.mk │ ├── javac.mk │ └── select.mk ├── config.mk ├── config_sanitizers.mk ├── configure_module_stem.mk ├── copy_headers.mk ├── cxx_stl_setup.mk ├── definitions.mk ├── deprecation.mk ├── dex_preopt.mk ├── dex_preopt_config.mk ├── dex_preopt_config_merger.py ├── dex_preopt_libart.mk ├── dex_preopt_odex_install.mk ├── distdir.mk ├── dumpconfig.mk ├── dumpvar.mk ├── dynamic_binary.mk ├── empty_test_config.xml ├── envsetup.mk ├── executable.mk ├── executable_internal.mk ├── executable_prefer_symlink.mk ├── filter_symbols.sh ├── force_aapt2.mk ├── fuzz_test.mk ├── generate_enforce_rro.mk ├── goma.mk ├── header_library.mk ├── header_library_internal.mk ├── host_executable.mk ├── host_executable_internal.mk ├── host_java_library.mk ├── host_java_library_common.mk ├── host_prebuilt.mk ├── host_shared_library.mk ├── host_shared_library_internal.mk ├── host_static_library.mk ├── host_static_library_internal.mk ├── install_jni_libs.mk ├── install_jni_libs_internal.mk ├── instrumentation_test_config_template.xml ├── jacoco.mk ├── java.mk ├── java_common.mk ├── java_host_test_config_template.xml ├── java_host_unit_test_config_template.xml ├── java_library.mk ├── java_prebuilt_internal.mk ├── java_renderscript.mk ├── java_test_config_template.xml ├── jetifier.mk ├── layoutlib_fonts.mk ├── link_type.mk ├── local_current_sdk.mk ├── local_systemsdk.mk ├── local_vndk.mk ├── main.mk ├── misc_prebuilt_internal.mk ├── module_arch_supported.mk ├── multi_prebuilt.mk ├── multilib.mk ├── native_benchmark_test_config_template.xml ├── native_host_test_config_template.xml ├── native_test.mk ├── native_test_config_template.xml ├── ninja_config.mk ├── node_fns.mk ├── notice_files.mk ├── os_licensing.mk ├── pack_dyn_relocs_setup.mk ├── package.mk ├── package_internal.mk ├── pathmap.mk ├── phony_package.mk ├── prebuilt.mk ├── prebuilt_internal.mk ├── process_wrapper.sh ├── process_wrapper_gdb.cmds ├── process_wrapper_gdb.sh ├── product-graph.mk ├── product.mk ├── product_config.mk ├── product_config.rbc ├── proguard.flags ├── proguard.jacoco.flags ├── proguard_basic_keeps.flags ├── project_definitions.mk ├── python_binary_host_mobly_test_config_template.xml ├── python_binary_host_test_config_template.xml ├── rbe.mk ├── robolectric_test_config_template.xml ├── root.mk ├── rust_device_benchmark_config_template.xml ├── rust_device_test_config_template.xml ├── rust_host_benchmark_config_template.xml ├── rust_host_test_config_template.xml ├── sbom.mk ├── sdk_check.mk ├── shared_library.mk ├── shared_library_internal.mk ├── shell_test_config_template.xml ├── soong_android_app_set.mk ├── soong_app_prebuilt.mk ├── soong_cc_rust_prebuilt.mk ├── soong_config.mk ├── soong_droiddoc_prebuilt.mk ├── soong_java_prebuilt.mk ├── static_java_library.mk ├── static_library.mk ├── static_library_internal.mk ├── suite_host_config.mk ├── support_libraries.mk ├── sysprop.mk ├── target_test_internal.mk ├── tasks │ ├── README.dex_preopt_check.md │ ├── art-host-tests.mk │ ├── automotive-general-tests.mk │ ├── automotive-tests.mk │ ├── build_custom_images.mk │ ├── catbox.mk │ ├── collect_gpl_sources.mk │ ├── csuite.mk │ ├── cts.mk │ ├── cts_root.mk │ ├── device-tests.mk │ ├── dex_preopt_check.mk │ ├── find-shareduid-violation.mk │ ├── general-tests.mk │ ├── host-unit-tests.mk │ ├── host_init_verifier.mk │ ├── ide.mk │ ├── module-info.mk │ ├── mts.mk │ ├── multitree.mk │ ├── oem_image.mk │ ├── owners.mk │ ├── platform_availability_check.mk │ ├── recovery_snapshot.mk │ ├── sdk-addon.mk │ ├── sts-lite.mk │ ├── sts.mk │ ├── test_mapping.mk │ ├── tools │ │ ├── build_custom_image.mk │ │ ├── compatibility.mk │ │ ├── package-modules.mk │ │ ├── vts-kernel-tests.mk │ │ └── vts_package_utils.mk │ ├── tradefed-tests-list.mk │ ├── vendor_module_check.mk │ ├── vendor_snapshot.mk │ ├── vndk.mk │ ├── vts-core-tests.mk │ ├── with-license.mk │ └── wvts.mk ├── use_lld_setup.mk ├── version_defaults.mk └── version_util.mk ├── envsetup.sh ├── help.sh ├── navbar.md ├── packaging ├── distdir.mk └── main.mk ├── rbesetup.sh ├── shell_utils.sh ├── tapasHelp.sh ├── target ├── board │ ├── Android.mk │ ├── BoardConfigEmuCommon.mk │ ├── BoardConfigGsiCommon.mk │ ├── BoardConfigMainlineCommon.mk │ ├── BoardConfigModuleCommon.mk │ ├── BoardConfigPixelCommon.mk │ ├── emulator_arm │ │ ├── AndroidBoard.mk │ │ ├── BoardConfig.mk │ │ ├── device.mk │ │ └── system_ext.prop │ ├── emulator_arm64 │ │ ├── BoardConfig.mk │ │ ├── device.mk │ │ └── system_ext.prop │ ├── emulator_x86 │ │ ├── BoardConfig.mk │ │ ├── device.mk │ │ └── system_ext.prop │ ├── emulator_x86_64 │ │ ├── BoardConfig.mk │ │ ├── device.mk │ │ └── system_ext.prop │ ├── emulator_x86_64_arm64 │ │ ├── BoardConfig.mk │ │ ├── device.mk │ │ └── system_ext.prop │ ├── emulator_x86_arm │ │ ├── BoardConfig.mk │ │ ├── device.mk │ │ └── system_ext.prop │ ├── generic │ │ ├── AndroidBoard.mk │ │ ├── BoardConfig.mk │ │ ├── README.txt │ │ ├── device.mk │ │ └── system_ext.prop │ ├── generic_64bitonly_x86_64 │ │ ├── BoardConfig.mk │ │ ├── README.txt │ │ ├── device.mk │ │ └── system.prop │ ├── generic_arm64 │ │ ├── BoardConfig.mk │ │ ├── README.txt │ │ ├── device.mk │ │ ├── sepolicy │ │ │ ├── OWNERS │ │ │ ├── file.te │ │ │ └── file_contexts │ │ └── system_ext.prop │ ├── generic_riscv64 │ │ ├── BoardConfig.mk │ │ ├── README.txt │ │ ├── device.mk │ │ └── system_ext.prop │ ├── generic_x86 │ │ ├── BoardConfig.mk │ │ ├── README.txt │ │ ├── device.mk │ │ └── system_ext.prop │ ├── generic_x86_64 │ │ ├── BoardConfig.mk │ │ ├── README.txt │ │ ├── device.mk │ │ └── system_ext.prop │ ├── generic_x86_64_arm64 │ │ ├── BoardConfig.mk │ │ ├── README.txt │ │ ├── device.mk │ │ └── system_ext.prop │ ├── generic_x86_arm │ │ ├── BoardConfig.mk │ │ ├── README.txt │ │ ├── device.mk │ │ └── system_ext.prop │ ├── go_defaults.prop │ ├── go_defaults_512.prop │ ├── go_defaults_common.prop │ ├── gsi_arm64 │ │ └── BoardConfig.mk │ ├── gsi_system_ext.prop │ ├── gsi_system_ext_user.prop │ ├── linux_bionic │ │ ├── BoardConfig.mk │ │ └── README.md │ ├── mainline_arm64 │ │ ├── BoardConfig.mk │ │ ├── bluetooth │ │ │ └── bdroid_buildcfg.h │ │ └── sepolicy │ │ │ ├── OWNERS │ │ │ ├── file.te │ │ │ └── file_contexts │ ├── mainline_sdk │ │ ├── BoardConfig.mk │ │ └── README.md │ ├── mainline_x86 │ │ └── BoardConfig.mk │ ├── mainline_x86_64 │ │ └── BoardConfig.mk │ ├── mainline_x86_arm │ │ └── BoardConfig.mk │ ├── module_arm │ │ ├── BoardConfig.mk │ │ └── README.md │ ├── module_arm64 │ │ ├── BoardConfig.mk │ │ └── README.md │ ├── module_arm64only │ │ ├── BoardConfig.mk │ │ └── README.md │ ├── module_x86 │ │ ├── BoardConfig.mk │ │ └── README.md │ ├── module_x86_64 │ │ ├── BoardConfig.mk │ │ └── README.md │ ├── module_x86_64only │ │ ├── BoardConfig.mk │ │ └── README.md │ └── ndk │ │ ├── BoardConfig.mk │ │ └── README.md └── product │ ├── AndroidProducts.mk │ ├── OWNERS │ ├── angle_default.mk │ ├── angle_supported.mk │ ├── aosp_64bitonly_x86_64.mk │ ├── aosp_arm.mk │ ├── aosp_arm64.mk │ ├── aosp_arm64_fullmte.mk │ ├── aosp_base.mk │ ├── aosp_base_telephony.mk │ ├── aosp_product.mk │ ├── aosp_riscv64.mk │ ├── aosp_x86.mk │ ├── aosp_x86_64.mk │ ├── aosp_x86_arm.mk │ ├── base.mk │ ├── base_product.mk │ ├── base_system.mk │ ├── base_system_ext.mk │ ├── base_vendor.mk │ ├── cfi-common.mk │ ├── core_64_bit.mk │ ├── core_64_bit_only.mk │ ├── core_minimal.mk │ ├── core_no_zygote.mk │ ├── default_art_config.mk │ ├── developer_gsi_keys.mk │ ├── empty-preloaded-classes │ ├── empty-profile │ ├── emulated_storage.mk │ ├── emulator_system.mk │ ├── emulator_vendor.mk │ ├── full.mk │ ├── full_base.mk │ ├── full_base_telephony.mk │ ├── full_x86.mk │ ├── fullmte.mk │ ├── generic.mk │ ├── generic_no_telephony.mk │ ├── generic_ramdisk.mk │ ├── generic_system.mk │ ├── generic_system_arm64.mk │ ├── generic_system_x86.mk │ ├── generic_system_x86_64.mk │ ├── generic_system_x86_arm.mk │ ├── generic_x86.mk │ ├── go_defaults.mk │ ├── go_defaults_512.mk │ ├── go_defaults_common.mk │ ├── gsi │ ├── 28.txt │ ├── 29.txt │ ├── 30.txt │ ├── 31.txt │ ├── 32.txt │ ├── 33.txt │ ├── 34.txt │ ├── Android.bp │ ├── Android.mk │ ├── OWNERS │ ├── current.txt │ ├── gsi_skip_mount.cfg │ ├── init.gsi.rc │ ├── init.vndk-nodef.rc │ └── testkey_rsa2048.pem │ ├── gsi_release.mk │ ├── handheld_product.mk │ ├── handheld_system.mk │ ├── handheld_system_ext.mk │ ├── handheld_vendor.mk │ ├── languages_default.mk │ ├── languages_full.mk │ ├── linux_bionic.mk │ ├── mainline_sdk.mk │ ├── mainline_system.mk │ ├── mainline_system_arm64.mk │ ├── mainline_system_x86.mk │ ├── mainline_system_x86_64.mk │ ├── mainline_system_x86_arm.mk │ ├── media_product.mk │ ├── media_system.mk │ ├── media_system_ext.mk │ ├── media_vendor.mk │ ├── memtag-common.mk │ ├── module_arm.mk │ ├── module_arm64.mk │ ├── module_arm64only.mk │ ├── module_common.mk │ ├── module_x86.mk │ ├── module_x86_64.mk │ ├── module_x86_64only.mk │ ├── ndk.mk │ ├── non_ab_device.mk │ ├── product_launched_with_k.mk │ ├── product_launched_with_l.mk │ ├── product_launched_with_l_mr1.mk │ ├── product_launched_with_m.mk │ ├── product_launched_with_n.mk │ ├── product_launched_with_n_mr1.mk │ ├── product_launched_with_o.mk │ ├── product_launched_with_o_mr1.mk │ ├── product_launched_with_p.mk │ ├── profile_boot_common.mk │ ├── ramdisk_stub.mk │ ├── runtime_libart.mk │ ├── sdk.mk │ ├── sdk_arm64.mk │ ├── sdk_phone_arm64.mk │ ├── sdk_phone_armv7.mk │ ├── sdk_phone_x86.mk │ ├── sdk_phone_x86_64.mk │ ├── sdk_x86.mk │ ├── sdk_x86_64.mk │ ├── security │ ├── Android.bp │ ├── Android.mk │ ├── BUILD.bazel │ ├── README │ ├── bluetooth.pk8 │ ├── bluetooth.x509.pem │ ├── cts_uicc_2021.pk8 │ ├── cts_uicc_2021.x509.pem │ ├── fsverity-release.x509.der │ ├── media.pk8 │ ├── media.x509.pem │ ├── networkstack.pk8 │ ├── networkstack.x509.pem │ ├── platform.pk8 │ ├── platform.x509.pem │ ├── sdk_sandbox.pk8 │ ├── sdk_sandbox.x509.pem │ ├── shared.pk8 │ ├── shared.x509.pem │ ├── testkey.pk8 │ └── testkey.x509.pem │ ├── sysconfig │ ├── Android.bp │ ├── initial-package-stopped-states-aosp.xml │ ├── preinstalled-packages-platform-aosp-product.xml │ ├── preinstalled-packages-platform-full-base.xml │ ├── preinstalled-packages-platform-generic-system.xml │ ├── preinstalled-packages-platform-handheld-product.xml │ ├── preinstalled-packages-platform-handheld-system.xml │ └── preinstalled-packages-platform-telephony-product.xml │ ├── telephony.mk │ ├── telephony_product.mk │ ├── telephony_system.mk │ ├── telephony_system_ext.mk │ ├── telephony_vendor.mk │ ├── updatable_apex.mk │ ├── userspace_reboot.mk │ ├── vboot.mk │ ├── virtual_ab_ota.mk │ ├── virtual_ab_ota │ ├── README.md │ ├── android_t_baseline.mk │ ├── compression.mk │ ├── compression_retrofit.mk │ ├── compression_with_xor.mk │ ├── launch.mk │ ├── launch_with_vendor_ramdisk.mk │ ├── plus_non_ab.mk │ ├── retrofit.mk │ └── vabc_features.mk │ ├── virtual_ab_ota_plus_non_ab.mk │ ├── virtual_ab_ota_retrofit.mk │ └── window_extensions.mk ├── tests ├── artifact_path_requirements │ ├── inherit1.rbc │ ├── inherit2.rbc │ ├── inherit3.rbc │ ├── inherit4.rbc │ ├── product.rbc │ └── test.rbc ├── b_tests.sh ├── board.rbc ├── board_input_vars.rbc ├── conversion_error.rbc ├── envsetup_tests.sh ├── include1.rbc ├── inherits_in_regular_variables │ ├── inherit1.rbc │ ├── product.rbc │ └── test.rbc ├── input_variables.rbc ├── lunch_tests.sh ├── part1.rbc ├── prefixed_sort_order │ ├── base-secondary.rbc │ ├── base.rbc │ ├── product.rbc │ └── test.rbc ├── product.rbc ├── roboleaf_tests.sh ├── run.rbc ├── single_value_inheritance │ ├── inherit1.rbc │ ├── inherit2.rbc │ ├── product.rbc │ └── test.rbc └── version_defaults.rbc └── tools ├── Android.bp ├── BUILD.bazel ├── OWNERS ├── acp ├── Android.bp ├── README └── acp.c ├── apicheck ├── Android.bp └── etc │ └── apicheck ├── atree ├── Android.bp ├── atree.cpp ├── files.cpp ├── files.h ├── fs.cpp ├── fs.h └── options.h ├── auto_gen_test_config.py ├── auto_gen_test_config_test.py ├── brillo-clang-format ├── build-runfiles.cc ├── buildinfo.sh ├── canoninja ├── README.md ├── canoninja.go ├── canoninja_test.go ├── cmd │ └── canoninja.go └── go.mod ├── check_elf_file.py ├── check_identical_lib.sh ├── check_radio_versions.py ├── checkowners.py ├── compare_builds.py ├── compliance ├── Android.bp ├── README.md ├── cmd │ ├── bom │ │ ├── bom.go │ │ └── bom_test.go │ ├── checkmetadata │ │ ├── checkmetadata.go │ │ └── checkmetadata_test.go │ ├── checkshare │ │ ├── checkshare.go │ │ └── checkshare_test.go │ ├── dumpgraph │ │ ├── dumpgraph.go │ │ └── dumpgraph_test.go │ ├── dumpresolutions │ │ ├── dumpresolutions.go │ │ └── dumpresolutions_test.go │ ├── htmlnotice │ │ ├── htmlnotice.go │ │ └── htmlnotice_test.go │ ├── listshare │ │ ├── listshare.go │ │ └── listshare_test.go │ ├── rtrace │ │ ├── rtrace.go │ │ └── rtrace_test.go │ ├── sbom │ │ ├── sbom.go │ │ └── sbom_test.go │ ├── shippedlibs │ │ ├── shippedlibs.go │ │ └── shippedlibs_test.go │ ├── testdata │ │ ├── README.md │ │ ├── firstparty │ │ │ ├── FIRST_PARTY_LICENSE │ │ │ ├── METADATA │ │ │ ├── application.meta_lic │ │ │ ├── bin │ │ │ │ ├── bin1.meta_lic │ │ │ │ ├── bin2.meta_lic │ │ │ │ └── bin3.meta_lic │ │ │ ├── container.zip.meta_lic │ │ │ ├── highest.apex.meta_lic │ │ │ └── lib │ │ │ │ ├── liba.so.meta_lic │ │ │ │ ├── libb.so.meta_lic │ │ │ │ ├── libc.a.meta_lic │ │ │ │ └── libd.so.meta_lic │ │ ├── notice │ │ │ ├── METADATA │ │ │ ├── NOTICE_LICENSE │ │ │ ├── application.meta_lic │ │ │ ├── bin │ │ │ │ ├── bin1.meta_lic │ │ │ │ ├── bin2.meta_lic │ │ │ │ └── bin3.meta_lic │ │ │ ├── container.zip.meta_lic │ │ │ ├── highest.apex.meta_lic │ │ │ └── lib │ │ │ │ ├── liba.so.meta_lic │ │ │ │ ├── libb.so.meta_lic │ │ │ │ ├── libc.a.meta_lic │ │ │ │ └── libd.so.meta_lic │ │ ├── proprietary │ │ │ ├── METADATA │ │ │ ├── PROPRIETARY_LICENSE │ │ │ ├── application.meta_lic │ │ │ ├── bin │ │ │ │ ├── bin1.meta_lic │ │ │ │ ├── bin2.meta_lic │ │ │ │ └── bin3.meta_lic │ │ │ ├── container.zip.meta_lic │ │ │ ├── highest.apex.meta_lic │ │ │ └── lib │ │ │ │ ├── liba.so.meta_lic │ │ │ │ ├── libb.so.meta_lic │ │ │ │ ├── libc.a.meta_lic │ │ │ │ └── libd.so.meta_lic │ │ ├── reciprocal │ │ │ ├── METADATA │ │ │ ├── RECIPROCAL_LICENSE │ │ │ ├── application.meta_lic │ │ │ ├── bin │ │ │ │ ├── bin1.meta_lic │ │ │ │ ├── bin2.meta_lic │ │ │ │ └── bin3.meta_lic │ │ │ ├── container.zip.meta_lic │ │ │ ├── highest.apex.meta_lic │ │ │ └── lib │ │ │ │ ├── liba.so.meta_lic │ │ │ │ ├── libb.so.meta_lic │ │ │ │ ├── libc.a.meta_lic │ │ │ │ └── libd.so.meta_lic │ │ ├── regressconcur │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ ├── bin1.meta_lic │ │ │ │ ├── bin2.meta_lic │ │ │ │ ├── bin3.meta_lic │ │ │ │ ├── bin4.meta_lic │ │ │ │ ├── bin5.meta_lic │ │ │ │ ├── bin6.meta_lic │ │ │ │ ├── bin7.meta_lic │ │ │ │ ├── bin8.meta_lic │ │ │ │ └── bin9.meta_lic │ │ │ ├── container.zip.meta_lic │ │ │ └── lib │ │ │ │ ├── lib1.a.meta_lic │ │ │ │ ├── lib2.a.meta_lic │ │ │ │ ├── lib3.a.meta_lic │ │ │ │ ├── lib4.a.meta_lic │ │ │ │ ├── lib5.a.meta_lic │ │ │ │ ├── lib6.a.meta_lic │ │ │ │ ├── lib7.a.meta_lic │ │ │ │ ├── lib8.a.meta_lic │ │ │ │ └── lib9.a.meta_lic │ │ ├── regressgpl1 │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ ├── bin1.meta_lic │ │ │ │ ├── bin2.meta_lic │ │ │ │ └── bin3.meta_lic │ │ │ ├── container.zip.meta_lic │ │ │ └── lib │ │ │ │ ├── libapache.so.meta_lic │ │ │ │ ├── libc++.so.meta_lic │ │ │ │ └── libgpl.so.meta_lic │ │ ├── regressgpl2 │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ ├── bin1.meta_lic │ │ │ │ ├── bin2.meta_lic │ │ │ │ └── bin3.meta_lic │ │ │ ├── container.zip.meta_lic │ │ │ └── lib │ │ │ │ ├── libapache.so.meta_lic │ │ │ │ ├── libc++.so.meta_lic │ │ │ │ └── libgpl.so.meta_lic │ │ └── restricted │ │ │ ├── METADATA │ │ │ ├── METADATA.android │ │ │ ├── RESTRICTED_LICENSE │ │ │ ├── application.meta_lic │ │ │ ├── bin │ │ │ ├── bin1.meta_lic │ │ │ ├── bin2.meta_lic │ │ │ └── bin3.meta_lic │ │ │ ├── container.zip.meta_lic │ │ │ ├── highest.apex.meta_lic │ │ │ └── lib │ │ │ ├── liba.so.meta_lic │ │ │ ├── libb.so.meta_lic │ │ │ ├── libc.a.meta_lic │ │ │ └── libd.so.meta_lic │ ├── textnotice │ │ ├── textnotice.go │ │ └── textnotice_test.go │ └── xmlnotice │ │ ├── xmlnotice.go │ │ └── xmlnotice_test.go ├── condition.go ├── condition_test.go ├── conditionset.go ├── conditionset_test.go ├── doc.go ├── go.mod ├── go.sum ├── graph.go ├── noticeindex.go ├── policy_policy.go ├── policy_policy_test.go ├── policy_resolve.go ├── policy_resolve_test.go ├── policy_resolvenotices.go ├── policy_resolvenotices_test.go ├── policy_resolveprivacy.go ├── policy_resolveprivacy_test.go ├── policy_resolveshare.go ├── policy_resolveshare_test.go ├── policy_shareprivacyconflicts.go ├── policy_shareprivacyconflicts_test.go ├── policy_shipped.go ├── policy_shipped_test.go ├── policy_walk.go ├── policy_walk_test.go ├── projectmetadata │ ├── Android.bp │ ├── projectmetadata.go │ └── projectmetadata_test.go ├── readgraph.go ├── readgraph_test.go ├── resolution.go ├── resolutionset.go ├── resolutionset_test.go ├── test_util.go └── testfs │ ├── Android.bp │ └── testfs.go ├── docker ├── .gitignore ├── Dockerfile └── README.md ├── droiddoc ├── Android.bp ├── LICENSE ├── README ├── templates-pdk │ ├── assets │ │ ├── android-developer-core.css │ │ ├── android-developer-docs-devguide.css │ │ ├── android-developer-docs.css │ │ ├── android-developer-docs.js │ │ ├── android-developer-reference.js │ │ ├── android-developer-resource-browser.css │ │ ├── android-developer-resource-browser.js │ │ ├── carousel.js │ │ ├── customizations.js │ │ ├── design │ │ │ ├── callout.png │ │ │ ├── default.css │ │ │ ├── default.js │ │ │ ├── device_galaxynexus_blank_land_span13.png │ │ │ ├── device_galaxynexus_blank_port_span5.png │ │ │ ├── device_galaxynexus_blank_port_span9.png │ │ │ ├── disclosure_down.png │ │ │ ├── disclosure_left.png │ │ │ ├── disclosure_right.png │ │ │ ├── disclosure_up.png │ │ │ ├── ico_action.png │ │ │ ├── ico_good.png │ │ │ ├── ico_movie_inline.png │ │ │ ├── ico_phone_tablet.png │ │ │ ├── ico_use.png │ │ │ ├── ico_web.png │ │ │ ├── ico_wrong.png │ │ │ └── open_new_page.png │ │ ├── images │ │ │ ├── android-developers-logo.png │ │ │ ├── android-partner-logo.png │ │ │ ├── android_logo.png │ │ │ ├── android_wrench.png │ │ │ ├── arrow_bluelink_down.png │ │ │ ├── arrow_bluelink_up.png │ │ │ ├── arrow_left_off.jpg │ │ │ ├── arrow_left_on.jpg │ │ │ ├── arrow_right_off.jpg │ │ │ ├── arrow_right_on.jpg │ │ │ ├── bg_community_leftDiv.jpg │ │ │ ├── bg_fade.jpg │ │ │ ├── bg_images_sprite.png │ │ │ ├── bg_logo.png │ │ │ ├── body-gradient-tab.png │ │ │ ├── body-gradient.png │ │ │ ├── developers-logo.png │ │ │ ├── grad-rule-qv.png │ │ │ ├── home │ │ │ │ ├── Android_Dev_Lab_l.png │ │ │ │ ├── GDC2011.png │ │ │ │ ├── GTV_icon_large.png │ │ │ │ ├── GTV_icon_small.png │ │ │ │ ├── IO-logo-2011.png │ │ │ │ ├── IO-logo.png │ │ │ │ ├── adc2_l.png │ │ │ │ ├── adc2_s.png │ │ │ │ ├── android_adc.png │ │ │ │ ├── bg_home_announcement.png │ │ │ │ ├── bg_home_bottom.jpg │ │ │ │ ├── bg_home_carousel.png │ │ │ │ ├── bg_home_carousel_board.png │ │ │ │ ├── bg_home_carousel_wheel.png │ │ │ │ ├── carousel_buttons_sprite.png │ │ │ │ ├── devphone-large.png │ │ │ │ ├── devphone-small.png │ │ │ │ ├── donut-android.png │ │ │ │ ├── eclair-android.png │ │ │ │ ├── froyo-android.png │ │ │ │ ├── gdc-logo.png │ │ │ │ ├── gingerdroid.png │ │ │ │ ├── google-plus-small.png │ │ │ │ ├── google-plus.png │ │ │ │ ├── honeycomb-android.png │ │ │ │ ├── ics-android.png │ │ │ │ ├── io-large.png │ │ │ │ ├── io-small.png │ │ │ │ ├── maps-large.png │ │ │ │ ├── maps-small.png │ │ │ │ ├── market-large.png │ │ │ │ ├── market-small.png │ │ │ │ ├── sdk-large.png │ │ │ │ └── sdk-small.png │ │ │ ├── hr_gray_main.jpg │ │ │ ├── hr_gray_side.jpg │ │ │ ├── icon_contribute.jpg │ │ │ ├── icon_design.png │ │ │ ├── icon_download.jpg │ │ │ ├── icon_download2.jpg │ │ │ ├── icon_guidelines_logo.png │ │ │ ├── icon_market.jpg │ │ │ ├── icon_play.png │ │ │ ├── icon_robot.jpg │ │ │ ├── icon_world.jpg │ │ │ ├── left_off.jpg │ │ │ ├── left_on.jpg │ │ │ ├── logo_breadcrumbz.jpg │ │ │ ├── open_source.png │ │ │ ├── preliminary.png │ │ │ ├── resizable-e.gif │ │ │ ├── resizable-e2.gif │ │ │ ├── resizable-eg.gif │ │ │ ├── resizable-s.gif │ │ │ ├── resizable-s2.gif │ │ │ ├── resizable-sg.gif │ │ │ ├── resource-article.png │ │ │ ├── resource-big-article.png │ │ │ ├── resource-big-sample.png │ │ │ ├── resource-big-tutorial.png │ │ │ ├── resource-big-video.png │ │ │ ├── resource-sample.png │ │ │ ├── resource-tutorial.png │ │ │ ├── resource-video.png │ │ │ ├── right_off.jpg │ │ │ ├── right_on.jpg │ │ │ ├── sidenav-rule.png │ │ │ ├── slide_1.jpg │ │ │ ├── slide_2.jpg │ │ │ ├── slide_3.jpg │ │ │ ├── slide_large_1.jpg │ │ │ ├── slide_large_2.jpg │ │ │ ├── slide_large_3.jpg │ │ │ ├── slide_off.jpg │ │ │ ├── slide_on.jpg │ │ │ ├── spacer.gif │ │ │ ├── triangle-closed-small.png │ │ │ ├── triangle-closed.png │ │ │ ├── triangle-opened-small.png │ │ │ ├── triangle-opened.png │ │ │ ├── uiguidelines1.png │ │ │ └── video-droid.png │ │ ├── jdiff_logo.gif │ │ ├── jquery-1.6.2.min.js │ │ ├── jquery-history.js │ │ ├── jquery-resizable.min.js │ │ ├── microtemplate.js │ │ ├── prettify.js │ │ ├── search_autocomplete.js │ │ ├── style.css │ │ ├── triangle-none.gif │ │ └── yui-3.3.0-reset-min.css │ ├── components │ │ └── masthead.cs │ ├── customizations.cs │ ├── data.hdf │ ├── docpage.cs │ ├── footer.cs │ ├── head_tag.cs │ ├── header_tabs.cs │ ├── jd_lists_unified.cs │ ├── sampleindex.cs │ ├── sdkpage.cs │ └── trailer.cs └── test │ ├── generics │ └── src │ │ └── com │ │ └── android │ │ └── generics │ │ ├── AbsListView.java │ │ ├── Adapter.java │ │ ├── AdapterView.java │ │ ├── Bar.java │ │ ├── Foo.java │ │ ├── FooBar.java │ │ ├── Iface.java │ │ ├── ListAdapter.java │ │ ├── TestComparable.java │ │ └── TestEnum.java │ └── stubs │ ├── expected │ └── com │ │ └── android │ │ └── stubs │ │ ├── Annot.java │ │ ├── InterfaceEnum.java │ │ ├── Parent.java │ │ ├── SomeEnum.java │ │ ├── Types.java │ │ ├── a │ │ ├── A.java │ │ └── SomeInterface.java │ │ └── b │ │ └── B.java │ ├── func.sh │ ├── run.sh │ └── src │ └── com │ └── android │ └── stubs │ ├── Annot.java │ ├── InterfaceEnum.java │ ├── Parent.java │ ├── SomeEnum.java │ ├── Types.java │ ├── a │ ├── A.java │ └── SomeInterface.java │ ├── b │ └── B.java │ └── hidden │ ├── Hidden.java │ ├── HiddenOuter.java │ └── PackagePrivate.java ├── event_log_tags.py ├── exercise_compare_builds ├── extract_kernel.py ├── fat16copy.py ├── fileslist_util.py ├── finalization ├── OWNERS ├── README.md ├── build-step-1-and-2.sh ├── build-step-1-and-m.sh ├── build-step-1.sh ├── build_soong_java_droidstubs.go.apply_hack.diff ├── build_soong_java_droidstubs.go.revert_hack.diff ├── cleanup.sh ├── environment.sh ├── finalize-aidl-vndk-sdk-resources.sh ├── finalize-sdk-rel.sh ├── frameworks_base.apply_hack.diff ├── frameworks_base.apply_resource_sdk_int.diff ├── frameworks_base.revert_hack.diff ├── frameworks_base.revert_resource_sdk_int.diff ├── localonly-steps.sh ├── step-1.sh ├── step-2.sh ├── update-step-1.sh └── update-step-2.sh ├── findleaves.py ├── fixlinebreaks.sh ├── fs_config ├── Android.bp ├── Android.mk ├── OWNERS ├── README.md ├── end_to_end_test │ ├── config.fs │ ├── product_fs_config_dirs │ ├── product_fs_config_files │ ├── run_test.sh │ ├── system_fs_config_dirs │ ├── system_fs_config_files │ ├── vendor_fs_config_dirs │ └── vendor_fs_config_files ├── fs_config.c ├── fs_config.go ├── fs_config_generator.py ├── pylintrc └── test_fs_config_generator.py ├── fs_get_stats ├── Android.bp └── fs_get_stats.c ├── generate-enforce-rro-android-manifest.py ├── generate-notice-files.py ├── generate-self-extracting-archive.py ├── generate_gts_shared_report.py ├── java-event-log-tags.py ├── libhost ├── Android.bp ├── CopyFile.c └── include │ └── host │ └── CopyFile.h ├── list_files.py ├── merge-event-log-tags.py ├── mk2bp_catalog.py ├── mk2bp_partition.py ├── normalize_path.py ├── post_process_props.py ├── post_process_props_unittest.xml ├── print_module_licenses.sh ├── product_config ├── Android.bp ├── MANIFEST.MF ├── TEST_MANIFEST.MF ├── TEST_MAPPING ├── inherit_tree.py ├── src │ └── com │ │ └── android │ │ └── build │ │ └── config │ │ ├── CommandException.java │ │ ├── ConfigBase.java │ │ ├── ConvertMakeToGenericConfig.java │ │ ├── CsvParser.java │ │ ├── DumpConfigParser.java │ │ ├── ErrorReporter.java │ │ ├── Errors.java │ │ ├── FlatConfig.java │ │ ├── FlattenConfig.java │ │ ├── GenericConfig.java │ │ ├── Kati.java │ │ ├── KatiCommand.java │ │ ├── KatiCommandImpl.java │ │ ├── KatiImpl.java │ │ ├── Main.java │ │ ├── MakeConfig.java │ │ ├── MakeWriter.java │ │ ├── Options.java │ │ ├── OutputChecker.java │ │ ├── Position.java │ │ ├── RegexSet.java │ │ ├── Str.java │ │ ├── Value.java │ │ └── VarType.java ├── test.sh └── test │ └── com │ └── android │ └── build │ └── config │ ├── CsvParserTest.java │ ├── ErrorReporterTest.java │ ├── OptionsTest.java │ ├── PositionTest.java │ ├── TestErrors.java │ └── TestRunner.java ├── protos ├── Android.bp └── metadata_file.proto ├── rbcrun ├── Android.bp ├── README.md ├── go.mod ├── go.sum ├── host.go ├── host_test.go ├── rbcrun │ └── rbcrun.go └── testdata │ ├── cli_and_env.star │ ├── file_ops.star │ ├── load.star │ ├── module1.star │ ├── module2.star │ └── shell.star ├── releasetools ├── Android.bp ├── OWNERS ├── add_img_to_target_files.py ├── apex_utils.py ├── blockimgdiff.py ├── build_image.py ├── build_super_image.py ├── care_map_pb2.py ├── check_ota_package_signature.py ├── check_partition_sizes.py ├── check_target_files_signatures.py ├── check_target_files_vintf.py ├── common.py ├── create_brick_ota.py ├── edify_generator.py ├── find_shareduid_violation.py ├── fsverity_metadata_generator.py ├── images.py ├── img_from_target_files.py ├── jarjar-rules.txt ├── make_recovery_patch.py ├── merge │ ├── Android.bp │ ├── OWNERS │ ├── merge_builds.py │ ├── merge_compatibility_checks.py │ ├── merge_dexopt.py │ ├── merge_meta.py │ ├── merge_target_files.py │ ├── merge_utils.py │ ├── test_merge_compatibility_checks.py │ ├── test_merge_meta.py │ └── test_merge_utils.py ├── merge_ota.py ├── non_ab_ota.py ├── ota_from_target_files.py ├── ota_metadata.proto ├── ota_metadata_pb2.py ├── ota_package_parser.py ├── ota_utils.py ├── payload_signer.py ├── pylintrc ├── rangelib.py ├── sign_apex.py ├── sign_target_files_apks.py ├── sparse_img.py ├── target_files_diff.py ├── test_add_img_to_target_files.py ├── test_apex_utils.py ├── test_blockimgdiff.py ├── test_build_image.py ├── test_check_partition_sizes.py ├── test_check_target_files_vintf.py ├── test_common.py ├── test_merge_ota.py ├── test_non_ab_ota.py ├── test_ota_from_target_files.py ├── test_ota_utils.py ├── test_rangelib.py ├── test_sign_apex.py ├── test_sign_target_files_apks.py ├── test_utils.py ├── test_validate_target_files.py ├── test_verity_utils.py ├── testdata │ ├── TestApp.apk │ ├── apexkeys_framework.txt │ ├── apexkeys_framework_conflict.txt │ ├── apexkeys_merge.txt │ ├── apexkeys_vendor.txt │ ├── apkcerts_framework.txt │ ├── apkcerts_merge.txt │ ├── apkcerts_vendor.txt │ ├── foo.apex │ ├── has_apk.apex │ ├── media.x509.pem │ ├── merge_config_framework_item_list │ ├── payload_signer.sh │ ├── platform.x509.pem │ ├── sepolicy.apex │ ├── sigfile.bin │ ├── signed-sigfile.bin │ ├── signing_helper.sh │ ├── testkey.key │ ├── testkey.pk8 │ ├── testkey.pubkey.pem │ ├── testkey.x509.pem │ ├── testkey_EC.key │ ├── testkey_RSA4096.key │ ├── testkey_mincrypt │ ├── testkey_with_passwd.key │ ├── testkey_with_passwd.pk8 │ ├── testkey_with_passwd.x509.pem │ ├── tuna_vbmeta.zip │ ├── tuna_vbmeta_system.zip │ ├── tuna_vbmeta_vendor.zip │ ├── verity.x509.pem │ ├── verity_mincrypt │ └── vintf │ │ ├── kernel │ │ └── SYSTEM │ │ │ └── etc │ │ │ └── vintf │ │ │ └── compatibility_matrix.1.xml │ │ ├── matrix_incompat │ │ └── SYSTEM │ │ │ └── etc │ │ │ └── vintf │ │ │ └── compatibility_matrix.1.xml │ │ ├── sku_compat │ │ ├── ODM │ │ │ └── etc │ │ │ │ └── vintf │ │ │ │ └── manifest_sku.xml │ │ └── SYSTEM │ │ │ └── etc │ │ │ └── vintf │ │ │ └── compatibility_matrix.1.xml │ │ └── sku_incompat │ │ ├── ODM │ │ └── etc │ │ │ └── vintf │ │ │ └── manifest_sku.xml │ │ └── SYSTEM │ │ └── etc │ │ └── vintf │ │ └── compatibility_matrix.1.xml ├── validate_target_files.py └── verity_utils.py ├── sbom ├── Android.bp ├── generate-sbom.py ├── sbom_data.py ├── sbom_writers.py ├── sbom_writers_test.py └── testdata │ ├── expected_json_sbom.spdx.json │ ├── expected_tagvalue_sbom.spdx │ ├── expected_tagvalue_sbom_doc_describes_file.spdx │ └── expected_tagvalue_sbom_unbundled.spdx ├── signapk ├── Android.bp ├── OWNERS ├── SignApk.mf ├── src │ └── com │ │ └── android │ │ └── signapk │ │ ├── CountingOutputStream.java │ │ └── SignApk.java └── test │ └── run ├── signtos ├── Android.bp ├── SignTos.java └── SignTos.mf ├── soong_to_convert.py ├── stub_diff_analyzer.py ├── test_extract_kernel.py ├── test_post_process_props.py ├── warn.py ├── warn ├── .pylintrc ├── OWNERS ├── __init__.py ├── android_project_list.py ├── chrome_project_list.py ├── cpp_warn_patterns.py ├── html_writer.py ├── java_warn_patterns.py ├── make_warn_patterns.py ├── other_warn_patterns.py ├── severity.py ├── tidy_warn_patterns.py ├── warn.py └── warn_common.py ├── whichgit ├── zipalign ├── Android.bp ├── OWNERS ├── README.txt ├── ZipAlign.cpp ├── ZipAlignMain.cpp ├── ZipEntry.cpp ├── ZipEntry.h ├── ZipFile.cpp ├── ZipFile.h ├── include │ └── ZipAlign.h └── tests │ ├── data │ ├── archiveWithOneDirectoryEntry.zip │ ├── diffOrders.zip │ ├── holes.zip │ └── unaligned.zip │ └── src │ └── align_test.cpp └── ziptime ├── Android.bp ├── README.txt ├── ZipEntry.cpp ├── ZipEntry.h ├── ZipFile.cpp ├── ZipFile.h └── ZipTime.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | *.pyc 3 | *.swp 4 | blueprint/ 5 | kati/ 6 | soong/ 7 | -------------------------------------------------------------------------------- /Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/Changes.md -------------------------------------------------------------------------------- /CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/CleanSpec.mk -------------------------------------------------------------------------------- /Deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/Deprecation.md -------------------------------------------------------------------------------- /METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/METADATA -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/OWNERS -------------------------------------------------------------------------------- /PREUPLOAD.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/PREUPLOAD.cfg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/README.md -------------------------------------------------------------------------------- /Usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/Usage.txt -------------------------------------------------------------------------------- /banchanHelp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/banchanHelp.sh -------------------------------------------------------------------------------- /common/core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/common/core.mk -------------------------------------------------------------------------------- /common/json.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/common/json.mk -------------------------------------------------------------------------------- /common/math.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/common/math.mk -------------------------------------------------------------------------------- /common/strings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/common/strings.mk -------------------------------------------------------------------------------- /core/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/BUILD.bazel -------------------------------------------------------------------------------- /core/LINUX_KERNEL_COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/LINUX_KERNEL_COPYING -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/OWNERS -------------------------------------------------------------------------------- /core/WINPTHREADS_COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/WINPTHREADS_COPYING -------------------------------------------------------------------------------- /core/aapt2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/aapt2.mk -------------------------------------------------------------------------------- /core/aapt_flags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/aapt_flags.mk -------------------------------------------------------------------------------- /core/allowed_ndk_types.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/allowed_ndk_types.mk -------------------------------------------------------------------------------- /core/android_manifest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/android_manifest.mk -------------------------------------------------------------------------------- /core/android_soong_config_vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/android_soong_config_vars.mk -------------------------------------------------------------------------------- /core/app_certificate_validate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/app_certificate_validate.mk -------------------------------------------------------------------------------- /core/app_prebuilt_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/app_prebuilt_internal.mk -------------------------------------------------------------------------------- /core/art_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/art_config.mk -------------------------------------------------------------------------------- /core/artifact_path_requirements.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/artifact_path_requirements.mk -------------------------------------------------------------------------------- /core/autogen_test_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/autogen_test_config.mk -------------------------------------------------------------------------------- /core/base_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/base_rules.mk -------------------------------------------------------------------------------- /core/binary.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/binary.mk -------------------------------------------------------------------------------- /core/board_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/board_config.mk -------------------------------------------------------------------------------- /core/board_config_wifi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/board_config_wifi.mk -------------------------------------------------------------------------------- /core/build-system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/build-system.html -------------------------------------------------------------------------------- /core/build_id.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/build_id.mk -------------------------------------------------------------------------------- /core/build_rro_package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/build_rro_package.mk -------------------------------------------------------------------------------- /core/cc_prebuilt_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/cc_prebuilt_internal.mk -------------------------------------------------------------------------------- /core/ccache.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/ccache.mk -------------------------------------------------------------------------------- /core/check_elf_file.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/check_elf_file.mk -------------------------------------------------------------------------------- /core/checktree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/checktree -------------------------------------------------------------------------------- /core/clang/HOST_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/clang/HOST_x86.mk -------------------------------------------------------------------------------- /core/clang/HOST_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/clang/HOST_x86_64.mk -------------------------------------------------------------------------------- /core/clang/TARGET_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/clang/TARGET_arm.mk -------------------------------------------------------------------------------- /core/clang/TARGET_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/clang/TARGET_arm64.mk -------------------------------------------------------------------------------- /core/clang/TARGET_riscv64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/clang/TARGET_riscv64.mk -------------------------------------------------------------------------------- /core/clang/TARGET_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/clang/TARGET_x86.mk -------------------------------------------------------------------------------- /core/clang/TARGET_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/clang/TARGET_x86_64.mk -------------------------------------------------------------------------------- /core/clang/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/clang/config.mk -------------------------------------------------------------------------------- /core/clang/tidy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/clang/tidy.mk -------------------------------------------------------------------------------- /core/cleanbuild.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/cleanbuild.mk -------------------------------------------------------------------------------- /core/cleanspec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/cleanspec.mk -------------------------------------------------------------------------------- /core/clear_vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/clear_vars.mk -------------------------------------------------------------------------------- /core/combo/HOST_darwin-x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/HOST_darwin-x86_64.mk -------------------------------------------------------------------------------- /core/combo/HOST_linux-x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/HOST_linux-x86.mk -------------------------------------------------------------------------------- /core/combo/HOST_linux-x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/HOST_linux-x86_64.mk -------------------------------------------------------------------------------- /core/combo/TARGET_linux-arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/TARGET_linux-arm.mk -------------------------------------------------------------------------------- /core/combo/TARGET_linux-arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/TARGET_linux-arm64.mk -------------------------------------------------------------------------------- /core/combo/TARGET_linux-riscv64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/TARGET_linux-riscv64.mk -------------------------------------------------------------------------------- /core/combo/TARGET_linux-x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/TARGET_linux-x86.mk -------------------------------------------------------------------------------- /core/combo/TARGET_linux-x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/TARGET_linux-x86_64.mk -------------------------------------------------------------------------------- /core/combo/arch/arm/armv7-a-neon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/arm/armv7-a-neon.mk -------------------------------------------------------------------------------- /core/combo/arch/arm/armv8-2a.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/arm/armv8-2a.mk -------------------------------------------------------------------------------- /core/combo/arch/arm/armv8-a.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/arm/armv8-a.mk -------------------------------------------------------------------------------- /core/combo/arch/arm64/armv8-2a-dotprod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/arm64/armv8-2a-dotprod.mk -------------------------------------------------------------------------------- /core/combo/arch/arm64/armv8-2a.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/combo/arch/arm64/armv8-a-branchprot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/arm64/armv8-a-branchprot.mk -------------------------------------------------------------------------------- /core/combo/arch/arm64/armv8-a.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/combo/arch/arm64/armv9-a.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/arm64/armv9-a.mk -------------------------------------------------------------------------------- /core/combo/arch/riscv64/riscv64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/riscv64/riscv64.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/amberlake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/amberlake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/atom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/atom.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/broadwell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/broadwell.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/goldmont-plus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/goldmont-plus.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/goldmont.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/goldmont.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/haswell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/haswell.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/icelake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/icelake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/ivybridge.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/ivybridge.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/kabylake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/kabylake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/sandybridge.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/sandybridge.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/silvermont.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/silvermont.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/skylake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/skylake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/stoneyridge.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/stoneyridge.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/tigerlake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/tigerlake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/tremont.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/tremont.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/whiskeylake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/whiskeylake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/x86.mk -------------------------------------------------------------------------------- /core/combo/arch/x86/x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86/x86_64.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/amberlake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/amberlake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/broadwell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/broadwell.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/goldmont-plus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/goldmont-plus.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/goldmont.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/goldmont.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/haswell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/haswell.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/icelake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/icelake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/ivybridge.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/ivybridge.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/kabylake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/kabylake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/sandybridge.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/sandybridge.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/silvermont.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/silvermont.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/skylake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/skylake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/stoneyridge.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/stoneyridge.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/tigerlake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/tigerlake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/tremont.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/tremont.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/whiskeylake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/whiskeylake.mk -------------------------------------------------------------------------------- /core/combo/arch/x86_64/x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/arch/x86_64/x86_64.mk -------------------------------------------------------------------------------- /core/combo/javac.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/javac.mk -------------------------------------------------------------------------------- /core/combo/select.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/combo/select.mk -------------------------------------------------------------------------------- /core/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/config.mk -------------------------------------------------------------------------------- /core/config_sanitizers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/config_sanitizers.mk -------------------------------------------------------------------------------- /core/configure_module_stem.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/configure_module_stem.mk -------------------------------------------------------------------------------- /core/copy_headers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/copy_headers.mk -------------------------------------------------------------------------------- /core/cxx_stl_setup.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/cxx_stl_setup.mk -------------------------------------------------------------------------------- /core/definitions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/definitions.mk -------------------------------------------------------------------------------- /core/deprecation.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/deprecation.mk -------------------------------------------------------------------------------- /core/dex_preopt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/dex_preopt.mk -------------------------------------------------------------------------------- /core/dex_preopt_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/dex_preopt_config.mk -------------------------------------------------------------------------------- /core/dex_preopt_config_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/dex_preopt_config_merger.py -------------------------------------------------------------------------------- /core/dex_preopt_libart.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/dex_preopt_libart.mk -------------------------------------------------------------------------------- /core/dex_preopt_odex_install.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/dex_preopt_odex_install.mk -------------------------------------------------------------------------------- /core/distdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/distdir.mk -------------------------------------------------------------------------------- /core/dumpconfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/dumpconfig.mk -------------------------------------------------------------------------------- /core/dumpvar.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/dumpvar.mk -------------------------------------------------------------------------------- /core/dynamic_binary.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/dynamic_binary.mk -------------------------------------------------------------------------------- /core/empty_test_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/empty_test_config.xml -------------------------------------------------------------------------------- /core/envsetup.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/envsetup.mk -------------------------------------------------------------------------------- /core/executable.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/executable.mk -------------------------------------------------------------------------------- /core/executable_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/executable_internal.mk -------------------------------------------------------------------------------- /core/executable_prefer_symlink.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/executable_prefer_symlink.mk -------------------------------------------------------------------------------- /core/filter_symbols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/filter_symbols.sh -------------------------------------------------------------------------------- /core/force_aapt2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/force_aapt2.mk -------------------------------------------------------------------------------- /core/fuzz_test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/fuzz_test.mk -------------------------------------------------------------------------------- /core/generate_enforce_rro.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/generate_enforce_rro.mk -------------------------------------------------------------------------------- /core/goma.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/goma.mk -------------------------------------------------------------------------------- /core/header_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/header_library.mk -------------------------------------------------------------------------------- /core/header_library_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/header_library_internal.mk -------------------------------------------------------------------------------- /core/host_executable.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/host_executable.mk -------------------------------------------------------------------------------- /core/host_executable_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/host_executable_internal.mk -------------------------------------------------------------------------------- /core/host_java_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/host_java_library.mk -------------------------------------------------------------------------------- /core/host_java_library_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/host_java_library_common.mk -------------------------------------------------------------------------------- /core/host_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/host_prebuilt.mk -------------------------------------------------------------------------------- /core/host_shared_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/host_shared_library.mk -------------------------------------------------------------------------------- /core/host_shared_library_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/host_shared_library_internal.mk -------------------------------------------------------------------------------- /core/host_static_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/host_static_library.mk -------------------------------------------------------------------------------- /core/host_static_library_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/host_static_library_internal.mk -------------------------------------------------------------------------------- /core/install_jni_libs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/install_jni_libs.mk -------------------------------------------------------------------------------- /core/install_jni_libs_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/install_jni_libs_internal.mk -------------------------------------------------------------------------------- /core/instrumentation_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/instrumentation_test_config_template.xml -------------------------------------------------------------------------------- /core/jacoco.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/jacoco.mk -------------------------------------------------------------------------------- /core/java.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/java.mk -------------------------------------------------------------------------------- /core/java_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/java_common.mk -------------------------------------------------------------------------------- /core/java_host_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/java_host_test_config_template.xml -------------------------------------------------------------------------------- /core/java_host_unit_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/java_host_unit_test_config_template.xml -------------------------------------------------------------------------------- /core/java_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/java_library.mk -------------------------------------------------------------------------------- /core/java_prebuilt_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/java_prebuilt_internal.mk -------------------------------------------------------------------------------- /core/java_renderscript.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/java_renderscript.mk -------------------------------------------------------------------------------- /core/java_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/java_test_config_template.xml -------------------------------------------------------------------------------- /core/jetifier.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/jetifier.mk -------------------------------------------------------------------------------- /core/layoutlib_fonts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/layoutlib_fonts.mk -------------------------------------------------------------------------------- /core/link_type.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/link_type.mk -------------------------------------------------------------------------------- /core/local_current_sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/local_current_sdk.mk -------------------------------------------------------------------------------- /core/local_systemsdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/local_systemsdk.mk -------------------------------------------------------------------------------- /core/local_vndk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/local_vndk.mk -------------------------------------------------------------------------------- /core/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/main.mk -------------------------------------------------------------------------------- /core/misc_prebuilt_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/misc_prebuilt_internal.mk -------------------------------------------------------------------------------- /core/module_arch_supported.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/module_arch_supported.mk -------------------------------------------------------------------------------- /core/multi_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/multi_prebuilt.mk -------------------------------------------------------------------------------- /core/multilib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/multilib.mk -------------------------------------------------------------------------------- /core/native_benchmark_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/native_benchmark_test_config_template.xml -------------------------------------------------------------------------------- /core/native_host_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/native_host_test_config_template.xml -------------------------------------------------------------------------------- /core/native_test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/native_test.mk -------------------------------------------------------------------------------- /core/native_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/native_test_config_template.xml -------------------------------------------------------------------------------- /core/ninja_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/ninja_config.mk -------------------------------------------------------------------------------- /core/node_fns.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/node_fns.mk -------------------------------------------------------------------------------- /core/notice_files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/notice_files.mk -------------------------------------------------------------------------------- /core/os_licensing.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/os_licensing.mk -------------------------------------------------------------------------------- /core/pack_dyn_relocs_setup.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/pack_dyn_relocs_setup.mk -------------------------------------------------------------------------------- /core/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/package.mk -------------------------------------------------------------------------------- /core/package_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/package_internal.mk -------------------------------------------------------------------------------- /core/pathmap.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/pathmap.mk -------------------------------------------------------------------------------- /core/phony_package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/phony_package.mk -------------------------------------------------------------------------------- /core/prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/prebuilt.mk -------------------------------------------------------------------------------- /core/prebuilt_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/prebuilt_internal.mk -------------------------------------------------------------------------------- /core/process_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/process_wrapper.sh -------------------------------------------------------------------------------- /core/process_wrapper_gdb.cmds: -------------------------------------------------------------------------------- 1 | run 2 | -------------------------------------------------------------------------------- /core/process_wrapper_gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/process_wrapper_gdb.sh -------------------------------------------------------------------------------- /core/product-graph.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/product-graph.mk -------------------------------------------------------------------------------- /core/product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/product.mk -------------------------------------------------------------------------------- /core/product_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/product_config.mk -------------------------------------------------------------------------------- /core/product_config.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/product_config.rbc -------------------------------------------------------------------------------- /core/proguard.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/proguard.flags -------------------------------------------------------------------------------- /core/proguard.jacoco.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/proguard.jacoco.flags -------------------------------------------------------------------------------- /core/proguard_basic_keeps.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/proguard_basic_keeps.flags -------------------------------------------------------------------------------- /core/project_definitions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/project_definitions.mk -------------------------------------------------------------------------------- /core/python_binary_host_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/python_binary_host_test_config_template.xml -------------------------------------------------------------------------------- /core/rbe.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/rbe.mk -------------------------------------------------------------------------------- /core/robolectric_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/robolectric_test_config_template.xml -------------------------------------------------------------------------------- /core/root.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/root.mk -------------------------------------------------------------------------------- /core/rust_device_benchmark_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/rust_device_benchmark_config_template.xml -------------------------------------------------------------------------------- /core/rust_device_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/rust_device_test_config_template.xml -------------------------------------------------------------------------------- /core/rust_host_benchmark_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/rust_host_benchmark_config_template.xml -------------------------------------------------------------------------------- /core/rust_host_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/rust_host_test_config_template.xml -------------------------------------------------------------------------------- /core/sbom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/sbom.mk -------------------------------------------------------------------------------- /core/sdk_check.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/sdk_check.mk -------------------------------------------------------------------------------- /core/shared_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/shared_library.mk -------------------------------------------------------------------------------- /core/shared_library_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/shared_library_internal.mk -------------------------------------------------------------------------------- /core/shell_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/shell_test_config_template.xml -------------------------------------------------------------------------------- /core/soong_android_app_set.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/soong_android_app_set.mk -------------------------------------------------------------------------------- /core/soong_app_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/soong_app_prebuilt.mk -------------------------------------------------------------------------------- /core/soong_cc_rust_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/soong_cc_rust_prebuilt.mk -------------------------------------------------------------------------------- /core/soong_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/soong_config.mk -------------------------------------------------------------------------------- /core/soong_droiddoc_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/soong_droiddoc_prebuilt.mk -------------------------------------------------------------------------------- /core/soong_java_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/soong_java_prebuilt.mk -------------------------------------------------------------------------------- /core/static_java_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/static_java_library.mk -------------------------------------------------------------------------------- /core/static_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/static_library.mk -------------------------------------------------------------------------------- /core/static_library_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/static_library_internal.mk -------------------------------------------------------------------------------- /core/suite_host_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/suite_host_config.mk -------------------------------------------------------------------------------- /core/support_libraries.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/support_libraries.mk -------------------------------------------------------------------------------- /core/sysprop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/sysprop.mk -------------------------------------------------------------------------------- /core/target_test_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/target_test_internal.mk -------------------------------------------------------------------------------- /core/tasks/README.dex_preopt_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/README.dex_preopt_check.md -------------------------------------------------------------------------------- /core/tasks/art-host-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/art-host-tests.mk -------------------------------------------------------------------------------- /core/tasks/automotive-general-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/automotive-general-tests.mk -------------------------------------------------------------------------------- /core/tasks/automotive-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/automotive-tests.mk -------------------------------------------------------------------------------- /core/tasks/build_custom_images.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/build_custom_images.mk -------------------------------------------------------------------------------- /core/tasks/catbox.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/catbox.mk -------------------------------------------------------------------------------- /core/tasks/collect_gpl_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/collect_gpl_sources.mk -------------------------------------------------------------------------------- /core/tasks/csuite.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/csuite.mk -------------------------------------------------------------------------------- /core/tasks/cts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/cts.mk -------------------------------------------------------------------------------- /core/tasks/cts_root.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/cts_root.mk -------------------------------------------------------------------------------- /core/tasks/device-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/device-tests.mk -------------------------------------------------------------------------------- /core/tasks/dex_preopt_check.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/dex_preopt_check.mk -------------------------------------------------------------------------------- /core/tasks/find-shareduid-violation.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/find-shareduid-violation.mk -------------------------------------------------------------------------------- /core/tasks/general-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/general-tests.mk -------------------------------------------------------------------------------- /core/tasks/host-unit-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/host-unit-tests.mk -------------------------------------------------------------------------------- /core/tasks/host_init_verifier.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/host_init_verifier.mk -------------------------------------------------------------------------------- /core/tasks/ide.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/ide.mk -------------------------------------------------------------------------------- /core/tasks/module-info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/module-info.mk -------------------------------------------------------------------------------- /core/tasks/mts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/mts.mk -------------------------------------------------------------------------------- /core/tasks/multitree.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/multitree.mk -------------------------------------------------------------------------------- /core/tasks/oem_image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/oem_image.mk -------------------------------------------------------------------------------- /core/tasks/owners.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/owners.mk -------------------------------------------------------------------------------- /core/tasks/platform_availability_check.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/platform_availability_check.mk -------------------------------------------------------------------------------- /core/tasks/recovery_snapshot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/recovery_snapshot.mk -------------------------------------------------------------------------------- /core/tasks/sdk-addon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/sdk-addon.mk -------------------------------------------------------------------------------- /core/tasks/sts-lite.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/sts-lite.mk -------------------------------------------------------------------------------- /core/tasks/sts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/sts.mk -------------------------------------------------------------------------------- /core/tasks/test_mapping.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/test_mapping.mk -------------------------------------------------------------------------------- /core/tasks/tools/build_custom_image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/tools/build_custom_image.mk -------------------------------------------------------------------------------- /core/tasks/tools/compatibility.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/tools/compatibility.mk -------------------------------------------------------------------------------- /core/tasks/tools/package-modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/tools/package-modules.mk -------------------------------------------------------------------------------- /core/tasks/tools/vts-kernel-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/tools/vts-kernel-tests.mk -------------------------------------------------------------------------------- /core/tasks/tools/vts_package_utils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/tools/vts_package_utils.mk -------------------------------------------------------------------------------- /core/tasks/tradefed-tests-list.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/tradefed-tests-list.mk -------------------------------------------------------------------------------- /core/tasks/vendor_module_check.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/vendor_module_check.mk -------------------------------------------------------------------------------- /core/tasks/vendor_snapshot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/vendor_snapshot.mk -------------------------------------------------------------------------------- /core/tasks/vndk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/vndk.mk -------------------------------------------------------------------------------- /core/tasks/vts-core-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/vts-core-tests.mk -------------------------------------------------------------------------------- /core/tasks/with-license.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/with-license.mk -------------------------------------------------------------------------------- /core/tasks/wvts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/tasks/wvts.mk -------------------------------------------------------------------------------- /core/use_lld_setup.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/use_lld_setup.mk -------------------------------------------------------------------------------- /core/version_defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/version_defaults.mk -------------------------------------------------------------------------------- /core/version_util.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/core/version_util.mk -------------------------------------------------------------------------------- /envsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/envsetup.sh -------------------------------------------------------------------------------- /help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/help.sh -------------------------------------------------------------------------------- /navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/navbar.md -------------------------------------------------------------------------------- /packaging/distdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/packaging/distdir.mk -------------------------------------------------------------------------------- /packaging/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/packaging/main.mk -------------------------------------------------------------------------------- /rbesetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/rbesetup.sh -------------------------------------------------------------------------------- /shell_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/shell_utils.sh -------------------------------------------------------------------------------- /tapasHelp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tapasHelp.sh -------------------------------------------------------------------------------- /target/board/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/Android.mk -------------------------------------------------------------------------------- /target/board/BoardConfigEmuCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/BoardConfigEmuCommon.mk -------------------------------------------------------------------------------- /target/board/BoardConfigGsiCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/BoardConfigGsiCommon.mk -------------------------------------------------------------------------------- /target/board/BoardConfigMainlineCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/BoardConfigMainlineCommon.mk -------------------------------------------------------------------------------- /target/board/BoardConfigModuleCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/BoardConfigModuleCommon.mk -------------------------------------------------------------------------------- /target/board/BoardConfigPixelCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/BoardConfigPixelCommon.mk -------------------------------------------------------------------------------- /target/board/emulator_arm/AndroidBoard.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | -------------------------------------------------------------------------------- /target/board/emulator_arm/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_arm/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/emulator_arm/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_arm/device.mk -------------------------------------------------------------------------------- /target/board/emulator_arm/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_arm/system_ext.prop -------------------------------------------------------------------------------- /target/board/emulator_arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_arm64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/emulator_arm64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_arm64/device.mk -------------------------------------------------------------------------------- /target/board/emulator_arm64/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_arm64/system_ext.prop -------------------------------------------------------------------------------- /target/board/emulator_x86/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/emulator_x86/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86/device.mk -------------------------------------------------------------------------------- /target/board/emulator_x86/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86/system_ext.prop -------------------------------------------------------------------------------- /target/board/emulator_x86_64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86_64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/emulator_x86_64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86_64/device.mk -------------------------------------------------------------------------------- /target/board/emulator_x86_64/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86_64/system_ext.prop -------------------------------------------------------------------------------- /target/board/emulator_x86_64_arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86_64_arm64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/emulator_x86_64_arm64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86_64_arm64/device.mk -------------------------------------------------------------------------------- /target/board/emulator_x86_64_arm64/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86_64_arm64/system_ext.prop -------------------------------------------------------------------------------- /target/board/emulator_x86_arm/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86_arm/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/emulator_x86_arm/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86_arm/device.mk -------------------------------------------------------------------------------- /target/board/emulator_x86_arm/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/emulator_x86_arm/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic/AndroidBoard.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | -------------------------------------------------------------------------------- /target/board/generic/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic/README.txt -------------------------------------------------------------------------------- /target/board/generic/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic/device.mk -------------------------------------------------------------------------------- /target/board/generic/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic_64bitonly_x86_64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_64bitonly_x86_64/README.txt -------------------------------------------------------------------------------- /target/board/generic_64bitonly_x86_64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_64bitonly_x86_64/device.mk -------------------------------------------------------------------------------- /target/board/generic_64bitonly_x86_64/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_64bitonly_x86_64/system.prop -------------------------------------------------------------------------------- /target/board/generic_arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_arm64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic_arm64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_arm64/README.txt -------------------------------------------------------------------------------- /target/board/generic_arm64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_arm64/device.mk -------------------------------------------------------------------------------- /target/board/generic_arm64/sepolicy/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/system/sepolicy:/OWNERS 2 | -------------------------------------------------------------------------------- /target/board/generic_arm64/sepolicy/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_arm64/sepolicy/file.te -------------------------------------------------------------------------------- /target/board/generic_arm64/sepolicy/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_arm64/sepolicy/file_contexts -------------------------------------------------------------------------------- /target/board/generic_arm64/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_arm64/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic_riscv64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_riscv64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic_riscv64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_riscv64/README.txt -------------------------------------------------------------------------------- /target/board/generic_riscv64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_riscv64/device.mk -------------------------------------------------------------------------------- /target/board/generic_riscv64/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_riscv64/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic_x86/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic_x86/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86/README.txt -------------------------------------------------------------------------------- /target/board/generic_x86/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86/device.mk -------------------------------------------------------------------------------- /target/board/generic_x86/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic_x86_64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic_x86_64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_64/README.txt -------------------------------------------------------------------------------- /target/board/generic_x86_64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_64/device.mk -------------------------------------------------------------------------------- /target/board/generic_x86_64/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_64/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic_x86_64_arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_64_arm64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic_x86_64_arm64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_64_arm64/README.txt -------------------------------------------------------------------------------- /target/board/generic_x86_64_arm64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_64_arm64/device.mk -------------------------------------------------------------------------------- /target/board/generic_x86_64_arm64/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_64_arm64/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic_x86_arm/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_arm/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic_x86_arm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_arm/README.txt -------------------------------------------------------------------------------- /target/board/generic_x86_arm/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_arm/device.mk -------------------------------------------------------------------------------- /target/board/generic_x86_arm/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/generic_x86_arm/system_ext.prop -------------------------------------------------------------------------------- /target/board/go_defaults.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/go_defaults.prop -------------------------------------------------------------------------------- /target/board/go_defaults_512.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/go_defaults_512.prop -------------------------------------------------------------------------------- /target/board/go_defaults_common.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/go_defaults_common.prop -------------------------------------------------------------------------------- /target/board/gsi_arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/gsi_arm64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/gsi_system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/gsi_system_ext.prop -------------------------------------------------------------------------------- /target/board/gsi_system_ext_user.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/gsi_system_ext_user.prop -------------------------------------------------------------------------------- /target/board/linux_bionic/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/linux_bionic/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/linux_bionic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/linux_bionic/README.md -------------------------------------------------------------------------------- /target/board/mainline_arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/mainline_arm64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/mainline_arm64/sepolicy/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/system/sepolicy:/OWNERS 2 | -------------------------------------------------------------------------------- /target/board/mainline_arm64/sepolicy/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/mainline_arm64/sepolicy/file.te -------------------------------------------------------------------------------- /target/board/mainline_arm64/sepolicy/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/mainline_arm64/sepolicy/file_contexts -------------------------------------------------------------------------------- /target/board/mainline_sdk/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/mainline_sdk/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/mainline_sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/mainline_sdk/README.md -------------------------------------------------------------------------------- /target/board/mainline_x86/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/mainline_x86/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/mainline_x86_64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/mainline_x86_64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/mainline_x86_arm/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/mainline_x86_arm/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_arm/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_arm/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_arm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_arm/README.md -------------------------------------------------------------------------------- /target/board/module_arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_arm64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_arm64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_arm64/README.md -------------------------------------------------------------------------------- /target/board/module_arm64only/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_arm64only/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_arm64only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_arm64only/README.md -------------------------------------------------------------------------------- /target/board/module_x86/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_x86/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_x86/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_x86/README.md -------------------------------------------------------------------------------- /target/board/module_x86_64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_x86_64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_x86_64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_x86_64/README.md -------------------------------------------------------------------------------- /target/board/module_x86_64only/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_x86_64only/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_x86_64only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/module_x86_64only/README.md -------------------------------------------------------------------------------- /target/board/ndk/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/ndk/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/ndk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/board/ndk/README.md -------------------------------------------------------------------------------- /target/product/AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/AndroidProducts.mk -------------------------------------------------------------------------------- /target/product/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/OWNERS -------------------------------------------------------------------------------- /target/product/angle_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/angle_default.mk -------------------------------------------------------------------------------- /target/product/angle_supported.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/angle_supported.mk -------------------------------------------------------------------------------- /target/product/aosp_64bitonly_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/aosp_64bitonly_x86_64.mk -------------------------------------------------------------------------------- /target/product/aosp_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/aosp_arm.mk -------------------------------------------------------------------------------- /target/product/aosp_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/aosp_arm64.mk -------------------------------------------------------------------------------- /target/product/aosp_arm64_fullmte.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/aosp_arm64_fullmte.mk -------------------------------------------------------------------------------- /target/product/aosp_base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/aosp_base.mk -------------------------------------------------------------------------------- /target/product/aosp_base_telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/aosp_base_telephony.mk -------------------------------------------------------------------------------- /target/product/aosp_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/aosp_product.mk -------------------------------------------------------------------------------- /target/product/aosp_riscv64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/aosp_riscv64.mk -------------------------------------------------------------------------------- /target/product/aosp_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/aosp_x86.mk -------------------------------------------------------------------------------- /target/product/aosp_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/aosp_x86_64.mk -------------------------------------------------------------------------------- /target/product/aosp_x86_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/aosp_x86_arm.mk -------------------------------------------------------------------------------- /target/product/base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/base.mk -------------------------------------------------------------------------------- /target/product/base_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/base_product.mk -------------------------------------------------------------------------------- /target/product/base_system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/base_system.mk -------------------------------------------------------------------------------- /target/product/base_system_ext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/base_system_ext.mk -------------------------------------------------------------------------------- /target/product/base_vendor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/base_vendor.mk -------------------------------------------------------------------------------- /target/product/cfi-common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/cfi-common.mk -------------------------------------------------------------------------------- /target/product/core_64_bit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/core_64_bit.mk -------------------------------------------------------------------------------- /target/product/core_64_bit_only.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/core_64_bit_only.mk -------------------------------------------------------------------------------- /target/product/core_minimal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/core_minimal.mk -------------------------------------------------------------------------------- /target/product/core_no_zygote.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/core_no_zygote.mk -------------------------------------------------------------------------------- /target/product/default_art_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/default_art_config.mk -------------------------------------------------------------------------------- /target/product/developer_gsi_keys.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/developer_gsi_keys.mk -------------------------------------------------------------------------------- /target/product/empty-preloaded-classes: -------------------------------------------------------------------------------- 1 | # Empty preloaded-classes file for automated testing. 2 | -------------------------------------------------------------------------------- /target/product/empty-profile: -------------------------------------------------------------------------------- 1 | # Empty preloaded-classes file for automated testing. 2 | -------------------------------------------------------------------------------- /target/product/emulated_storage.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/emulated_storage.mk -------------------------------------------------------------------------------- /target/product/emulator_system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/emulator_system.mk -------------------------------------------------------------------------------- /target/product/emulator_vendor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/emulator_vendor.mk -------------------------------------------------------------------------------- /target/product/full.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/full.mk -------------------------------------------------------------------------------- /target/product/full_base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/full_base.mk -------------------------------------------------------------------------------- /target/product/full_base_telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/full_base_telephony.mk -------------------------------------------------------------------------------- /target/product/full_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/full_x86.mk -------------------------------------------------------------------------------- /target/product/fullmte.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/fullmte.mk -------------------------------------------------------------------------------- /target/product/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/generic.mk -------------------------------------------------------------------------------- /target/product/generic_no_telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/generic_no_telephony.mk -------------------------------------------------------------------------------- /target/product/generic_ramdisk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/generic_ramdisk.mk -------------------------------------------------------------------------------- /target/product/generic_system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/generic_system.mk -------------------------------------------------------------------------------- /target/product/generic_system_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/generic_system_arm64.mk -------------------------------------------------------------------------------- /target/product/generic_system_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/generic_system_x86.mk -------------------------------------------------------------------------------- /target/product/generic_system_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/generic_system_x86_64.mk -------------------------------------------------------------------------------- /target/product/generic_system_x86_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/generic_system_x86_arm.mk -------------------------------------------------------------------------------- /target/product/generic_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/generic_x86.mk -------------------------------------------------------------------------------- /target/product/go_defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/go_defaults.mk -------------------------------------------------------------------------------- /target/product/go_defaults_512.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/go_defaults_512.mk -------------------------------------------------------------------------------- /target/product/go_defaults_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/go_defaults_common.mk -------------------------------------------------------------------------------- /target/product/gsi/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/28.txt -------------------------------------------------------------------------------- /target/product/gsi/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/29.txt -------------------------------------------------------------------------------- /target/product/gsi/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/30.txt -------------------------------------------------------------------------------- /target/product/gsi/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/31.txt -------------------------------------------------------------------------------- /target/product/gsi/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/32.txt -------------------------------------------------------------------------------- /target/product/gsi/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/33.txt -------------------------------------------------------------------------------- /target/product/gsi/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/34.txt -------------------------------------------------------------------------------- /target/product/gsi/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/Android.bp -------------------------------------------------------------------------------- /target/product/gsi/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/Android.mk -------------------------------------------------------------------------------- /target/product/gsi/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/OWNERS -------------------------------------------------------------------------------- /target/product/gsi/current.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/current.txt -------------------------------------------------------------------------------- /target/product/gsi/gsi_skip_mount.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/gsi_skip_mount.cfg -------------------------------------------------------------------------------- /target/product/gsi/init.gsi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/init.gsi.rc -------------------------------------------------------------------------------- /target/product/gsi/init.vndk-nodef.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/init.vndk-nodef.rc -------------------------------------------------------------------------------- /target/product/gsi/testkey_rsa2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi/testkey_rsa2048.pem -------------------------------------------------------------------------------- /target/product/gsi_release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/gsi_release.mk -------------------------------------------------------------------------------- /target/product/handheld_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/handheld_product.mk -------------------------------------------------------------------------------- /target/product/handheld_system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/handheld_system.mk -------------------------------------------------------------------------------- /target/product/handheld_system_ext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/handheld_system_ext.mk -------------------------------------------------------------------------------- /target/product/handheld_vendor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/handheld_vendor.mk -------------------------------------------------------------------------------- /target/product/languages_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/languages_default.mk -------------------------------------------------------------------------------- /target/product/languages_full.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/languages_full.mk -------------------------------------------------------------------------------- /target/product/linux_bionic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/linux_bionic.mk -------------------------------------------------------------------------------- /target/product/mainline_sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/mainline_sdk.mk -------------------------------------------------------------------------------- /target/product/mainline_system.mk: -------------------------------------------------------------------------------- 1 | generic_system.mk -------------------------------------------------------------------------------- /target/product/mainline_system_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/mainline_system_arm64.mk -------------------------------------------------------------------------------- /target/product/mainline_system_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/mainline_system_x86.mk -------------------------------------------------------------------------------- /target/product/mainline_system_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/mainline_system_x86_64.mk -------------------------------------------------------------------------------- /target/product/mainline_system_x86_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/mainline_system_x86_arm.mk -------------------------------------------------------------------------------- /target/product/media_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/media_product.mk -------------------------------------------------------------------------------- /target/product/media_system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/media_system.mk -------------------------------------------------------------------------------- /target/product/media_system_ext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/media_system_ext.mk -------------------------------------------------------------------------------- /target/product/media_vendor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/media_vendor.mk -------------------------------------------------------------------------------- /target/product/memtag-common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/memtag-common.mk -------------------------------------------------------------------------------- /target/product/module_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/module_arm.mk -------------------------------------------------------------------------------- /target/product/module_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/module_arm64.mk -------------------------------------------------------------------------------- /target/product/module_arm64only.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/module_arm64only.mk -------------------------------------------------------------------------------- /target/product/module_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/module_common.mk -------------------------------------------------------------------------------- /target/product/module_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/module_x86.mk -------------------------------------------------------------------------------- /target/product/module_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/module_x86_64.mk -------------------------------------------------------------------------------- /target/product/module_x86_64only.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/module_x86_64only.mk -------------------------------------------------------------------------------- /target/product/ndk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/ndk.mk -------------------------------------------------------------------------------- /target/product/non_ab_device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/non_ab_device.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_k.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/product_launched_with_k.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_l.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/product_launched_with_l.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_l_mr1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/product_launched_with_l_mr1.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_m.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/product_launched_with_m.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_n.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/product_launched_with_n.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_n_mr1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/product_launched_with_n_mr1.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_o.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/product_launched_with_o.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_o_mr1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/product_launched_with_o_mr1.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_p.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/product_launched_with_p.mk -------------------------------------------------------------------------------- /target/product/profile_boot_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/profile_boot_common.mk -------------------------------------------------------------------------------- /target/product/ramdisk_stub.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/ramdisk_stub.mk -------------------------------------------------------------------------------- /target/product/runtime_libart.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/runtime_libart.mk -------------------------------------------------------------------------------- /target/product/sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/sdk.mk -------------------------------------------------------------------------------- /target/product/sdk_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/sdk_arm64.mk -------------------------------------------------------------------------------- /target/product/sdk_phone_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/sdk_phone_arm64.mk -------------------------------------------------------------------------------- /target/product/sdk_phone_armv7.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/sdk_phone_armv7.mk -------------------------------------------------------------------------------- /target/product/sdk_phone_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/sdk_phone_x86.mk -------------------------------------------------------------------------------- /target/product/sdk_phone_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/sdk_phone_x86_64.mk -------------------------------------------------------------------------------- /target/product/sdk_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/sdk_x86.mk -------------------------------------------------------------------------------- /target/product/sdk_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/sdk_x86_64.mk -------------------------------------------------------------------------------- /target/product/security/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/Android.bp -------------------------------------------------------------------------------- /target/product/security/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/Android.mk -------------------------------------------------------------------------------- /target/product/security/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/BUILD.bazel -------------------------------------------------------------------------------- /target/product/security/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/README -------------------------------------------------------------------------------- /target/product/security/bluetooth.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/bluetooth.pk8 -------------------------------------------------------------------------------- /target/product/security/bluetooth.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/bluetooth.x509.pem -------------------------------------------------------------------------------- /target/product/security/cts_uicc_2021.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/cts_uicc_2021.pk8 -------------------------------------------------------------------------------- /target/product/security/cts_uicc_2021.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/cts_uicc_2021.x509.pem -------------------------------------------------------------------------------- /target/product/security/fsverity-release.x509.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/fsverity-release.x509.der -------------------------------------------------------------------------------- /target/product/security/media.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/media.pk8 -------------------------------------------------------------------------------- /target/product/security/media.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/media.x509.pem -------------------------------------------------------------------------------- /target/product/security/networkstack.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/networkstack.pk8 -------------------------------------------------------------------------------- /target/product/security/networkstack.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/networkstack.x509.pem -------------------------------------------------------------------------------- /target/product/security/platform.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/platform.pk8 -------------------------------------------------------------------------------- /target/product/security/platform.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/platform.x509.pem -------------------------------------------------------------------------------- /target/product/security/sdk_sandbox.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/sdk_sandbox.pk8 -------------------------------------------------------------------------------- /target/product/security/sdk_sandbox.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/sdk_sandbox.x509.pem -------------------------------------------------------------------------------- /target/product/security/shared.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/shared.pk8 -------------------------------------------------------------------------------- /target/product/security/shared.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/shared.x509.pem -------------------------------------------------------------------------------- /target/product/security/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/testkey.pk8 -------------------------------------------------------------------------------- /target/product/security/testkey.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/security/testkey.x509.pem -------------------------------------------------------------------------------- /target/product/sysconfig/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/sysconfig/Android.bp -------------------------------------------------------------------------------- /target/product/telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/telephony.mk -------------------------------------------------------------------------------- /target/product/telephony_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/telephony_product.mk -------------------------------------------------------------------------------- /target/product/telephony_system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/telephony_system.mk -------------------------------------------------------------------------------- /target/product/telephony_system_ext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/telephony_system_ext.mk -------------------------------------------------------------------------------- /target/product/telephony_vendor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/telephony_vendor.mk -------------------------------------------------------------------------------- /target/product/updatable_apex.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/updatable_apex.mk -------------------------------------------------------------------------------- /target/product/userspace_reboot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/userspace_reboot.mk -------------------------------------------------------------------------------- /target/product/vboot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/vboot.mk -------------------------------------------------------------------------------- /target/product/virtual_ab_ota.mk: -------------------------------------------------------------------------------- 1 | virtual_ab_ota/launch.mk -------------------------------------------------------------------------------- /target/product/virtual_ab_ota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/virtual_ab_ota/README.md -------------------------------------------------------------------------------- /target/product/virtual_ab_ota/compression.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/virtual_ab_ota/compression.mk -------------------------------------------------------------------------------- /target/product/virtual_ab_ota/launch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/virtual_ab_ota/launch.mk -------------------------------------------------------------------------------- /target/product/virtual_ab_ota/plus_non_ab.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/virtual_ab_ota/plus_non_ab.mk -------------------------------------------------------------------------------- /target/product/virtual_ab_ota/retrofit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/virtual_ab_ota/retrofit.mk -------------------------------------------------------------------------------- /target/product/virtual_ab_ota/vabc_features.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/virtual_ab_ota/vabc_features.mk -------------------------------------------------------------------------------- /target/product/virtual_ab_ota_plus_non_ab.mk: -------------------------------------------------------------------------------- 1 | virtual_ab_ota/plus_non_ab.mk -------------------------------------------------------------------------------- /target/product/virtual_ab_ota_retrofit.mk: -------------------------------------------------------------------------------- 1 | virtual_ab_ota/retrofit.mk -------------------------------------------------------------------------------- /target/product/window_extensions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/target/product/window_extensions.mk -------------------------------------------------------------------------------- /tests/artifact_path_requirements/inherit1.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/artifact_path_requirements/inherit1.rbc -------------------------------------------------------------------------------- /tests/artifact_path_requirements/inherit2.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/artifact_path_requirements/inherit2.rbc -------------------------------------------------------------------------------- /tests/artifact_path_requirements/inherit3.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/artifact_path_requirements/inherit3.rbc -------------------------------------------------------------------------------- /tests/artifact_path_requirements/inherit4.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/artifact_path_requirements/inherit4.rbc -------------------------------------------------------------------------------- /tests/artifact_path_requirements/product.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/artifact_path_requirements/product.rbc -------------------------------------------------------------------------------- /tests/artifact_path_requirements/test.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/artifact_path_requirements/test.rbc -------------------------------------------------------------------------------- /tests/b_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/b_tests.sh -------------------------------------------------------------------------------- /tests/board.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/board.rbc -------------------------------------------------------------------------------- /tests/board_input_vars.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/board_input_vars.rbc -------------------------------------------------------------------------------- /tests/conversion_error.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/conversion_error.rbc -------------------------------------------------------------------------------- /tests/envsetup_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/envsetup_tests.sh -------------------------------------------------------------------------------- /tests/include1.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/include1.rbc -------------------------------------------------------------------------------- /tests/inherits_in_regular_variables/inherit1.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/inherits_in_regular_variables/inherit1.rbc -------------------------------------------------------------------------------- /tests/inherits_in_regular_variables/product.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/inherits_in_regular_variables/product.rbc -------------------------------------------------------------------------------- /tests/inherits_in_regular_variables/test.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/inherits_in_regular_variables/test.rbc -------------------------------------------------------------------------------- /tests/input_variables.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/input_variables.rbc -------------------------------------------------------------------------------- /tests/lunch_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/lunch_tests.sh -------------------------------------------------------------------------------- /tests/part1.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/part1.rbc -------------------------------------------------------------------------------- /tests/prefixed_sort_order/base-secondary.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/prefixed_sort_order/base-secondary.rbc -------------------------------------------------------------------------------- /tests/prefixed_sort_order/base.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/prefixed_sort_order/base.rbc -------------------------------------------------------------------------------- /tests/prefixed_sort_order/product.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/prefixed_sort_order/product.rbc -------------------------------------------------------------------------------- /tests/prefixed_sort_order/test.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/prefixed_sort_order/test.rbc -------------------------------------------------------------------------------- /tests/product.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/product.rbc -------------------------------------------------------------------------------- /tests/roboleaf_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/roboleaf_tests.sh -------------------------------------------------------------------------------- /tests/run.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/run.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance/inherit1.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/single_value_inheritance/inherit1.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance/inherit2.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/single_value_inheritance/inherit2.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance/product.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/single_value_inheritance/product.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance/test.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/single_value_inheritance/test.rbc -------------------------------------------------------------------------------- /tests/version_defaults.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tests/version_defaults.rbc -------------------------------------------------------------------------------- /tools/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/Android.bp -------------------------------------------------------------------------------- /tools/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/BUILD.bazel -------------------------------------------------------------------------------- /tools/OWNERS: -------------------------------------------------------------------------------- 1 | per-file warn.py,checkowners.py = chh@google.com 2 | -------------------------------------------------------------------------------- /tools/acp/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/acp/Android.bp -------------------------------------------------------------------------------- /tools/acp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/acp/README -------------------------------------------------------------------------------- /tools/acp/acp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/acp/acp.c -------------------------------------------------------------------------------- /tools/apicheck/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/apicheck/Android.bp -------------------------------------------------------------------------------- /tools/apicheck/etc/apicheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/apicheck/etc/apicheck -------------------------------------------------------------------------------- /tools/atree/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/atree/Android.bp -------------------------------------------------------------------------------- /tools/atree/atree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/atree/atree.cpp -------------------------------------------------------------------------------- /tools/atree/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/atree/files.cpp -------------------------------------------------------------------------------- /tools/atree/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/atree/files.h -------------------------------------------------------------------------------- /tools/atree/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/atree/fs.cpp -------------------------------------------------------------------------------- /tools/atree/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/atree/fs.h -------------------------------------------------------------------------------- /tools/atree/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/atree/options.h -------------------------------------------------------------------------------- /tools/auto_gen_test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/auto_gen_test_config.py -------------------------------------------------------------------------------- /tools/auto_gen_test_config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/auto_gen_test_config_test.py -------------------------------------------------------------------------------- /tools/brillo-clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/brillo-clang-format -------------------------------------------------------------------------------- /tools/build-runfiles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/build-runfiles.cc -------------------------------------------------------------------------------- /tools/buildinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/buildinfo.sh -------------------------------------------------------------------------------- /tools/canoninja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/canoninja/README.md -------------------------------------------------------------------------------- /tools/canoninja/canoninja.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/canoninja/canoninja.go -------------------------------------------------------------------------------- /tools/canoninja/canoninja_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/canoninja/canoninja_test.go -------------------------------------------------------------------------------- /tools/canoninja/cmd/canoninja.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/canoninja/cmd/canoninja.go -------------------------------------------------------------------------------- /tools/canoninja/go.mod: -------------------------------------------------------------------------------- 1 | module canoninja 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /tools/check_elf_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/check_elf_file.py -------------------------------------------------------------------------------- /tools/check_identical_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/check_identical_lib.sh -------------------------------------------------------------------------------- /tools/check_radio_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/check_radio_versions.py -------------------------------------------------------------------------------- /tools/checkowners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/checkowners.py -------------------------------------------------------------------------------- /tools/compare_builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compare_builds.py -------------------------------------------------------------------------------- /tools/compliance/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/Android.bp -------------------------------------------------------------------------------- /tools/compliance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/README.md -------------------------------------------------------------------------------- /tools/compliance/cmd/bom/bom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/bom/bom.go -------------------------------------------------------------------------------- /tools/compliance/cmd/bom/bom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/bom/bom_test.go -------------------------------------------------------------------------------- /tools/compliance/cmd/checkshare/checkshare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/checkshare/checkshare.go -------------------------------------------------------------------------------- /tools/compliance/cmd/dumpgraph/dumpgraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/dumpgraph/dumpgraph.go -------------------------------------------------------------------------------- /tools/compliance/cmd/dumpgraph/dumpgraph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/dumpgraph/dumpgraph_test.go -------------------------------------------------------------------------------- /tools/compliance/cmd/htmlnotice/htmlnotice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/htmlnotice/htmlnotice.go -------------------------------------------------------------------------------- /tools/compliance/cmd/listshare/listshare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/listshare/listshare.go -------------------------------------------------------------------------------- /tools/compliance/cmd/listshare/listshare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/listshare/listshare_test.go -------------------------------------------------------------------------------- /tools/compliance/cmd/rtrace/rtrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/rtrace/rtrace.go -------------------------------------------------------------------------------- /tools/compliance/cmd/rtrace/rtrace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/rtrace/rtrace_test.go -------------------------------------------------------------------------------- /tools/compliance/cmd/sbom/sbom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/sbom/sbom.go -------------------------------------------------------------------------------- /tools/compliance/cmd/sbom/sbom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/sbom/sbom_test.go -------------------------------------------------------------------------------- /tools/compliance/cmd/shippedlibs/shippedlibs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/shippedlibs/shippedlibs.go -------------------------------------------------------------------------------- /tools/compliance/cmd/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/testdata/README.md -------------------------------------------------------------------------------- /tools/compliance/cmd/testdata/firstparty/FIRST_PARTY_LICENSE: -------------------------------------------------------------------------------- 1 | &&&First Party License&&& 2 | -------------------------------------------------------------------------------- /tools/compliance/cmd/testdata/notice/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/testdata/notice/METADATA -------------------------------------------------------------------------------- /tools/compliance/cmd/testdata/notice/NOTICE_LICENSE: -------------------------------------------------------------------------------- 1 | %%%Notice License%%% 2 | -------------------------------------------------------------------------------- /tools/compliance/cmd/testdata/proprietary/METADATA: -------------------------------------------------------------------------------- 1 | # comments are allowed 2 | -------------------------------------------------------------------------------- /tools/compliance/cmd/testdata/proprietary/PROPRIETARY_LICENSE: -------------------------------------------------------------------------------- 1 | @@@Proprietary License@@@ 2 | -------------------------------------------------------------------------------- /tools/compliance/cmd/testdata/reciprocal/RECIPROCAL_LICENSE: -------------------------------------------------------------------------------- 1 | $$$Reciprocal License$$$ 2 | -------------------------------------------------------------------------------- /tools/compliance/cmd/testdata/restricted/RESTRICTED_LICENSE: -------------------------------------------------------------------------------- 1 | ###Restricted License### 2 | -------------------------------------------------------------------------------- /tools/compliance/cmd/textnotice/textnotice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/textnotice/textnotice.go -------------------------------------------------------------------------------- /tools/compliance/cmd/xmlnotice/xmlnotice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/xmlnotice/xmlnotice.go -------------------------------------------------------------------------------- /tools/compliance/cmd/xmlnotice/xmlnotice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/cmd/xmlnotice/xmlnotice_test.go -------------------------------------------------------------------------------- /tools/compliance/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/condition.go -------------------------------------------------------------------------------- /tools/compliance/condition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/condition_test.go -------------------------------------------------------------------------------- /tools/compliance/conditionset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/conditionset.go -------------------------------------------------------------------------------- /tools/compliance/conditionset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/conditionset_test.go -------------------------------------------------------------------------------- /tools/compliance/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/doc.go -------------------------------------------------------------------------------- /tools/compliance/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/go.mod -------------------------------------------------------------------------------- /tools/compliance/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/go.sum -------------------------------------------------------------------------------- /tools/compliance/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/graph.go -------------------------------------------------------------------------------- /tools/compliance/noticeindex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/noticeindex.go -------------------------------------------------------------------------------- /tools/compliance/policy_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_policy.go -------------------------------------------------------------------------------- /tools/compliance/policy_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_policy_test.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_resolve.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_resolve_test.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolvenotices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_resolvenotices.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolvenotices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_resolvenotices_test.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolveprivacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_resolveprivacy.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolveprivacy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_resolveprivacy_test.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolveshare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_resolveshare.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolveshare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_resolveshare_test.go -------------------------------------------------------------------------------- /tools/compliance/policy_shareprivacyconflicts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_shareprivacyconflicts.go -------------------------------------------------------------------------------- /tools/compliance/policy_shipped.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_shipped.go -------------------------------------------------------------------------------- /tools/compliance/policy_shipped_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_shipped_test.go -------------------------------------------------------------------------------- /tools/compliance/policy_walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_walk.go -------------------------------------------------------------------------------- /tools/compliance/policy_walk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/policy_walk_test.go -------------------------------------------------------------------------------- /tools/compliance/projectmetadata/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/projectmetadata/Android.bp -------------------------------------------------------------------------------- /tools/compliance/readgraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/readgraph.go -------------------------------------------------------------------------------- /tools/compliance/readgraph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/readgraph_test.go -------------------------------------------------------------------------------- /tools/compliance/resolution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/resolution.go -------------------------------------------------------------------------------- /tools/compliance/resolutionset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/resolutionset.go -------------------------------------------------------------------------------- /tools/compliance/resolutionset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/resolutionset_test.go -------------------------------------------------------------------------------- /tools/compliance/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/test_util.go -------------------------------------------------------------------------------- /tools/compliance/testfs/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/testfs/Android.bp -------------------------------------------------------------------------------- /tools/compliance/testfs/testfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/compliance/testfs/testfs.go -------------------------------------------------------------------------------- /tools/docker/.gitignore: -------------------------------------------------------------------------------- 1 | gitconfig 2 | -------------------------------------------------------------------------------- /tools/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/docker/Dockerfile -------------------------------------------------------------------------------- /tools/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/docker/README.md -------------------------------------------------------------------------------- /tools/droiddoc/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/Android.bp -------------------------------------------------------------------------------- /tools/droiddoc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/LICENSE -------------------------------------------------------------------------------- /tools/droiddoc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/README -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/assets/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/templates-pdk/assets/carousel.js -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/assets/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/templates-pdk/assets/prettify.js -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/templates-pdk/assets/style.css -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/customizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/templates-pdk/customizations.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/data.hdf: -------------------------------------------------------------------------------- 1 | template { 2 | which = normal 3 | } 4 | 5 | -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/docpage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/templates-pdk/docpage.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/footer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/templates-pdk/footer.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/head_tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/templates-pdk/head_tag.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/header_tabs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/templates-pdk/header_tabs.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/jd_lists_unified.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/sampleindex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/templates-pdk/sampleindex.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/sdkpage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/templates-pdk/sdkpage.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/trailer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/templates-pdk/trailer.cs -------------------------------------------------------------------------------- /tools/droiddoc/test/stubs/func.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/test/stubs/func.sh -------------------------------------------------------------------------------- /tools/droiddoc/test/stubs/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/droiddoc/test/stubs/run.sh -------------------------------------------------------------------------------- /tools/event_log_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/event_log_tags.py -------------------------------------------------------------------------------- /tools/exercise_compare_builds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/exercise_compare_builds -------------------------------------------------------------------------------- /tools/extract_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/extract_kernel.py -------------------------------------------------------------------------------- /tools/fat16copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fat16copy.py -------------------------------------------------------------------------------- /tools/fileslist_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fileslist_util.py -------------------------------------------------------------------------------- /tools/finalization/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/OWNERS -------------------------------------------------------------------------------- /tools/finalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/README.md -------------------------------------------------------------------------------- /tools/finalization/build-step-1-and-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/build-step-1-and-2.sh -------------------------------------------------------------------------------- /tools/finalization/build-step-1-and-m.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/build-step-1-and-m.sh -------------------------------------------------------------------------------- /tools/finalization/build-step-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/build-step-1.sh -------------------------------------------------------------------------------- /tools/finalization/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/cleanup.sh -------------------------------------------------------------------------------- /tools/finalization/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/environment.sh -------------------------------------------------------------------------------- /tools/finalization/finalize-sdk-rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/finalize-sdk-rel.sh -------------------------------------------------------------------------------- /tools/finalization/localonly-steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/localonly-steps.sh -------------------------------------------------------------------------------- /tools/finalization/step-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/step-1.sh -------------------------------------------------------------------------------- /tools/finalization/step-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/step-2.sh -------------------------------------------------------------------------------- /tools/finalization/update-step-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/update-step-1.sh -------------------------------------------------------------------------------- /tools/finalization/update-step-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/finalization/update-step-2.sh -------------------------------------------------------------------------------- /tools/findleaves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/findleaves.py -------------------------------------------------------------------------------- /tools/fixlinebreaks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fixlinebreaks.sh -------------------------------------------------------------------------------- /tools/fs_config/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_config/Android.bp -------------------------------------------------------------------------------- /tools/fs_config/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_config/Android.mk -------------------------------------------------------------------------------- /tools/fs_config/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/system/core:/janitors/OWNERS 2 | -------------------------------------------------------------------------------- /tools/fs_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_config/README.md -------------------------------------------------------------------------------- /tools/fs_config/end_to_end_test/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_config/end_to_end_test/config.fs -------------------------------------------------------------------------------- /tools/fs_config/end_to_end_test/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_config/end_to_end_test/run_test.sh -------------------------------------------------------------------------------- /tools/fs_config/fs_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_config/fs_config.c -------------------------------------------------------------------------------- /tools/fs_config/fs_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_config/fs_config.go -------------------------------------------------------------------------------- /tools/fs_config/fs_config_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_config/fs_config_generator.py -------------------------------------------------------------------------------- /tools/fs_config/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_config/pylintrc -------------------------------------------------------------------------------- /tools/fs_config/test_fs_config_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_config/test_fs_config_generator.py -------------------------------------------------------------------------------- /tools/fs_get_stats/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_get_stats/Android.bp -------------------------------------------------------------------------------- /tools/fs_get_stats/fs_get_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/fs_get_stats/fs_get_stats.c -------------------------------------------------------------------------------- /tools/generate-enforce-rro-android-manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/generate-enforce-rro-android-manifest.py -------------------------------------------------------------------------------- /tools/generate-notice-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/generate-notice-files.py -------------------------------------------------------------------------------- /tools/generate-self-extracting-archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/generate-self-extracting-archive.py -------------------------------------------------------------------------------- /tools/generate_gts_shared_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/generate_gts_shared_report.py -------------------------------------------------------------------------------- /tools/java-event-log-tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/java-event-log-tags.py -------------------------------------------------------------------------------- /tools/libhost/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/libhost/Android.bp -------------------------------------------------------------------------------- /tools/libhost/CopyFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/libhost/CopyFile.c -------------------------------------------------------------------------------- /tools/libhost/include/host/CopyFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/libhost/include/host/CopyFile.h -------------------------------------------------------------------------------- /tools/list_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/list_files.py -------------------------------------------------------------------------------- /tools/merge-event-log-tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/merge-event-log-tags.py -------------------------------------------------------------------------------- /tools/mk2bp_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/mk2bp_catalog.py -------------------------------------------------------------------------------- /tools/mk2bp_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/mk2bp_partition.py -------------------------------------------------------------------------------- /tools/normalize_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/normalize_path.py -------------------------------------------------------------------------------- /tools/post_process_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/post_process_props.py -------------------------------------------------------------------------------- /tools/post_process_props_unittest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/post_process_props_unittest.xml -------------------------------------------------------------------------------- /tools/print_module_licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/print_module_licenses.sh -------------------------------------------------------------------------------- /tools/product_config/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/product_config/Android.bp -------------------------------------------------------------------------------- /tools/product_config/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: com.android.build.config.Main 3 | -------------------------------------------------------------------------------- /tools/product_config/TEST_MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: com.android.build.config.TestRunner 3 | -------------------------------------------------------------------------------- /tools/product_config/TEST_MAPPING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/product_config/TEST_MAPPING -------------------------------------------------------------------------------- /tools/product_config/inherit_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/product_config/inherit_tree.py -------------------------------------------------------------------------------- /tools/product_config/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/product_config/test.sh -------------------------------------------------------------------------------- /tools/protos/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/protos/Android.bp -------------------------------------------------------------------------------- /tools/protos/metadata_file.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/protos/metadata_file.proto -------------------------------------------------------------------------------- /tools/rbcrun/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/Android.bp -------------------------------------------------------------------------------- /tools/rbcrun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/README.md -------------------------------------------------------------------------------- /tools/rbcrun/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/go.mod -------------------------------------------------------------------------------- /tools/rbcrun/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/go.sum -------------------------------------------------------------------------------- /tools/rbcrun/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/host.go -------------------------------------------------------------------------------- /tools/rbcrun/host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/host_test.go -------------------------------------------------------------------------------- /tools/rbcrun/rbcrun/rbcrun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/rbcrun/rbcrun.go -------------------------------------------------------------------------------- /tools/rbcrun/testdata/cli_and_env.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/testdata/cli_and_env.star -------------------------------------------------------------------------------- /tools/rbcrun/testdata/file_ops.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/testdata/file_ops.star -------------------------------------------------------------------------------- /tools/rbcrun/testdata/load.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/testdata/load.star -------------------------------------------------------------------------------- /tools/rbcrun/testdata/module1.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/testdata/module1.star -------------------------------------------------------------------------------- /tools/rbcrun/testdata/module2.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/testdata/module2.star -------------------------------------------------------------------------------- /tools/rbcrun/testdata/shell.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/rbcrun/testdata/shell.star -------------------------------------------------------------------------------- /tools/releasetools/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/Android.bp -------------------------------------------------------------------------------- /tools/releasetools/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/OWNERS -------------------------------------------------------------------------------- /tools/releasetools/add_img_to_target_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/add_img_to_target_files.py -------------------------------------------------------------------------------- /tools/releasetools/apex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/apex_utils.py -------------------------------------------------------------------------------- /tools/releasetools/blockimgdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/blockimgdiff.py -------------------------------------------------------------------------------- /tools/releasetools/build_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/build_image.py -------------------------------------------------------------------------------- /tools/releasetools/build_super_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/build_super_image.py -------------------------------------------------------------------------------- /tools/releasetools/care_map_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/care_map_pb2.py -------------------------------------------------------------------------------- /tools/releasetools/check_partition_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/check_partition_sizes.py -------------------------------------------------------------------------------- /tools/releasetools/check_target_files_vintf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/check_target_files_vintf.py -------------------------------------------------------------------------------- /tools/releasetools/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/common.py -------------------------------------------------------------------------------- /tools/releasetools/create_brick_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/create_brick_ota.py -------------------------------------------------------------------------------- /tools/releasetools/edify_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/edify_generator.py -------------------------------------------------------------------------------- /tools/releasetools/find_shareduid_violation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/find_shareduid_violation.py -------------------------------------------------------------------------------- /tools/releasetools/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/images.py -------------------------------------------------------------------------------- /tools/releasetools/img_from_target_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/img_from_target_files.py -------------------------------------------------------------------------------- /tools/releasetools/jarjar-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/jarjar-rules.txt -------------------------------------------------------------------------------- /tools/releasetools/make_recovery_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/make_recovery_patch.py -------------------------------------------------------------------------------- /tools/releasetools/merge/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/merge/Android.bp -------------------------------------------------------------------------------- /tools/releasetools/merge/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/merge/OWNERS -------------------------------------------------------------------------------- /tools/releasetools/merge/merge_builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/merge/merge_builds.py -------------------------------------------------------------------------------- /tools/releasetools/merge/merge_dexopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/merge/merge_dexopt.py -------------------------------------------------------------------------------- /tools/releasetools/merge/merge_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/merge/merge_meta.py -------------------------------------------------------------------------------- /tools/releasetools/merge/merge_target_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/merge/merge_target_files.py -------------------------------------------------------------------------------- /tools/releasetools/merge/merge_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/merge/merge_utils.py -------------------------------------------------------------------------------- /tools/releasetools/merge/test_merge_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/merge/test_merge_meta.py -------------------------------------------------------------------------------- /tools/releasetools/merge/test_merge_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/merge/test_merge_utils.py -------------------------------------------------------------------------------- /tools/releasetools/merge_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/merge_ota.py -------------------------------------------------------------------------------- /tools/releasetools/non_ab_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/non_ab_ota.py -------------------------------------------------------------------------------- /tools/releasetools/ota_from_target_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/ota_from_target_files.py -------------------------------------------------------------------------------- /tools/releasetools/ota_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/ota_metadata.proto -------------------------------------------------------------------------------- /tools/releasetools/ota_metadata_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/ota_metadata_pb2.py -------------------------------------------------------------------------------- /tools/releasetools/ota_package_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/ota_package_parser.py -------------------------------------------------------------------------------- /tools/releasetools/ota_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/ota_utils.py -------------------------------------------------------------------------------- /tools/releasetools/payload_signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/payload_signer.py -------------------------------------------------------------------------------- /tools/releasetools/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/pylintrc -------------------------------------------------------------------------------- /tools/releasetools/rangelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/rangelib.py -------------------------------------------------------------------------------- /tools/releasetools/sign_apex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/sign_apex.py -------------------------------------------------------------------------------- /tools/releasetools/sign_target_files_apks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/sign_target_files_apks.py -------------------------------------------------------------------------------- /tools/releasetools/sparse_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/sparse_img.py -------------------------------------------------------------------------------- /tools/releasetools/target_files_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/target_files_diff.py -------------------------------------------------------------------------------- /tools/releasetools/test_apex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_apex_utils.py -------------------------------------------------------------------------------- /tools/releasetools/test_blockimgdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_blockimgdiff.py -------------------------------------------------------------------------------- /tools/releasetools/test_build_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_build_image.py -------------------------------------------------------------------------------- /tools/releasetools/test_check_partition_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_check_partition_sizes.py -------------------------------------------------------------------------------- /tools/releasetools/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_common.py -------------------------------------------------------------------------------- /tools/releasetools/test_merge_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_merge_ota.py -------------------------------------------------------------------------------- /tools/releasetools/test_non_ab_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_non_ab_ota.py -------------------------------------------------------------------------------- /tools/releasetools/test_ota_from_target_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_ota_from_target_files.py -------------------------------------------------------------------------------- /tools/releasetools/test_ota_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_ota_utils.py -------------------------------------------------------------------------------- /tools/releasetools/test_rangelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_rangelib.py -------------------------------------------------------------------------------- /tools/releasetools/test_sign_apex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_sign_apex.py -------------------------------------------------------------------------------- /tools/releasetools/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_utils.py -------------------------------------------------------------------------------- /tools/releasetools/test_validate_target_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_validate_target_files.py -------------------------------------------------------------------------------- /tools/releasetools/test_verity_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/test_verity_utils.py -------------------------------------------------------------------------------- /tools/releasetools/testdata/TestApp.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/TestApp.apk -------------------------------------------------------------------------------- /tools/releasetools/testdata/apexkeys_merge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/apexkeys_merge.txt -------------------------------------------------------------------------------- /tools/releasetools/testdata/apexkeys_vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/apexkeys_vendor.txt -------------------------------------------------------------------------------- /tools/releasetools/testdata/apkcerts_merge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/apkcerts_merge.txt -------------------------------------------------------------------------------- /tools/releasetools/testdata/apkcerts_vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/apkcerts_vendor.txt -------------------------------------------------------------------------------- /tools/releasetools/testdata/foo.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/foo.apex -------------------------------------------------------------------------------- /tools/releasetools/testdata/has_apk.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/has_apk.apex -------------------------------------------------------------------------------- /tools/releasetools/testdata/media.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/media.x509.pem -------------------------------------------------------------------------------- /tools/releasetools/testdata/payload_signer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/payload_signer.sh -------------------------------------------------------------------------------- /tools/releasetools/testdata/platform.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/platform.x509.pem -------------------------------------------------------------------------------- /tools/releasetools/testdata/sepolicy.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/sepolicy.apex -------------------------------------------------------------------------------- /tools/releasetools/testdata/sigfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/sigfile.bin -------------------------------------------------------------------------------- /tools/releasetools/testdata/signed-sigfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/signed-sigfile.bin -------------------------------------------------------------------------------- /tools/releasetools/testdata/signing_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/signing_helper.sh -------------------------------------------------------------------------------- /tools/releasetools/testdata/testkey.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/testkey.key -------------------------------------------------------------------------------- /tools/releasetools/testdata/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/testkey.pk8 -------------------------------------------------------------------------------- /tools/releasetools/testdata/testkey.pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/testkey.pubkey.pem -------------------------------------------------------------------------------- /tools/releasetools/testdata/testkey.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/testkey.x509.pem -------------------------------------------------------------------------------- /tools/releasetools/testdata/testkey_EC.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/testkey_EC.key -------------------------------------------------------------------------------- /tools/releasetools/testdata/testkey_RSA4096.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/testkey_RSA4096.key -------------------------------------------------------------------------------- /tools/releasetools/testdata/testkey_mincrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/testkey_mincrypt -------------------------------------------------------------------------------- /tools/releasetools/testdata/tuna_vbmeta.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/tuna_vbmeta.zip -------------------------------------------------------------------------------- /tools/releasetools/testdata/verity.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/verity.x509.pem -------------------------------------------------------------------------------- /tools/releasetools/testdata/verity_mincrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/testdata/verity_mincrypt -------------------------------------------------------------------------------- /tools/releasetools/validate_target_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/validate_target_files.py -------------------------------------------------------------------------------- /tools/releasetools/verity_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/releasetools/verity_utils.py -------------------------------------------------------------------------------- /tools/sbom/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/sbom/Android.bp -------------------------------------------------------------------------------- /tools/sbom/generate-sbom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/sbom/generate-sbom.py -------------------------------------------------------------------------------- /tools/sbom/sbom_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/sbom/sbom_data.py -------------------------------------------------------------------------------- /tools/sbom/sbom_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/sbom/sbom_writers.py -------------------------------------------------------------------------------- /tools/sbom/sbom_writers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/sbom/sbom_writers_test.py -------------------------------------------------------------------------------- /tools/sbom/testdata/expected_json_sbom.spdx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/sbom/testdata/expected_json_sbom.spdx.json -------------------------------------------------------------------------------- /tools/sbom/testdata/expected_tagvalue_sbom.spdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/sbom/testdata/expected_tagvalue_sbom.spdx -------------------------------------------------------------------------------- /tools/signapk/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/signapk/Android.bp -------------------------------------------------------------------------------- /tools/signapk/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/signapk/OWNERS -------------------------------------------------------------------------------- /tools/signapk/SignApk.mf: -------------------------------------------------------------------------------- 1 | Main-Class: com.android.signapk.SignApk 2 | -------------------------------------------------------------------------------- /tools/signapk/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/signapk/test/run -------------------------------------------------------------------------------- /tools/signtos/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/signtos/Android.bp -------------------------------------------------------------------------------- /tools/signtos/SignTos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/signtos/SignTos.java -------------------------------------------------------------------------------- /tools/signtos/SignTos.mf: -------------------------------------------------------------------------------- 1 | Main-Class: com.android.signtos.SignTos 2 | -------------------------------------------------------------------------------- /tools/soong_to_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/soong_to_convert.py -------------------------------------------------------------------------------- /tools/stub_diff_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/stub_diff_analyzer.py -------------------------------------------------------------------------------- /tools/test_extract_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/test_extract_kernel.py -------------------------------------------------------------------------------- /tools/test_post_process_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/test_post_process_props.py -------------------------------------------------------------------------------- /tools/warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn.py -------------------------------------------------------------------------------- /tools/warn/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/.pylintrc -------------------------------------------------------------------------------- /tools/warn/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/OWNERS -------------------------------------------------------------------------------- /tools/warn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/warn/android_project_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/android_project_list.py -------------------------------------------------------------------------------- /tools/warn/chrome_project_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/chrome_project_list.py -------------------------------------------------------------------------------- /tools/warn/cpp_warn_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/cpp_warn_patterns.py -------------------------------------------------------------------------------- /tools/warn/html_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/html_writer.py -------------------------------------------------------------------------------- /tools/warn/java_warn_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/java_warn_patterns.py -------------------------------------------------------------------------------- /tools/warn/make_warn_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/make_warn_patterns.py -------------------------------------------------------------------------------- /tools/warn/other_warn_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/other_warn_patterns.py -------------------------------------------------------------------------------- /tools/warn/severity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/severity.py -------------------------------------------------------------------------------- /tools/warn/tidy_warn_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/tidy_warn_patterns.py -------------------------------------------------------------------------------- /tools/warn/warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/warn.py -------------------------------------------------------------------------------- /tools/warn/warn_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/warn/warn_common.py -------------------------------------------------------------------------------- /tools/whichgit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/whichgit -------------------------------------------------------------------------------- /tools/zipalign/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/Android.bp -------------------------------------------------------------------------------- /tools/zipalign/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/system/core:/janitors/OWNERS 2 | sanglardf@google.com 3 | -------------------------------------------------------------------------------- /tools/zipalign/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/README.txt -------------------------------------------------------------------------------- /tools/zipalign/ZipAlign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/ZipAlign.cpp -------------------------------------------------------------------------------- /tools/zipalign/ZipAlignMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/ZipAlignMain.cpp -------------------------------------------------------------------------------- /tools/zipalign/ZipEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/ZipEntry.cpp -------------------------------------------------------------------------------- /tools/zipalign/ZipEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/ZipEntry.h -------------------------------------------------------------------------------- /tools/zipalign/ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/ZipFile.cpp -------------------------------------------------------------------------------- /tools/zipalign/ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/ZipFile.h -------------------------------------------------------------------------------- /tools/zipalign/include/ZipAlign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/include/ZipAlign.h -------------------------------------------------------------------------------- /tools/zipalign/tests/data/diffOrders.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/tests/data/diffOrders.zip -------------------------------------------------------------------------------- /tools/zipalign/tests/data/holes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/tests/data/holes.zip -------------------------------------------------------------------------------- /tools/zipalign/tests/data/unaligned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/tests/data/unaligned.zip -------------------------------------------------------------------------------- /tools/zipalign/tests/src/align_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/zipalign/tests/src/align_test.cpp -------------------------------------------------------------------------------- /tools/ziptime/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/ziptime/Android.bp -------------------------------------------------------------------------------- /tools/ziptime/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/ziptime/README.txt -------------------------------------------------------------------------------- /tools/ziptime/ZipEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/ziptime/ZipEntry.cpp -------------------------------------------------------------------------------- /tools/ziptime/ZipEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/ziptime/ZipEntry.h -------------------------------------------------------------------------------- /tools/ziptime/ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/ziptime/ZipFile.cpp -------------------------------------------------------------------------------- /tools/ziptime/ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/ziptime/ZipFile.h -------------------------------------------------------------------------------- /tools/ziptime/ZipTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelExperience/build/HEAD/tools/ziptime/ZipTime.cpp --------------------------------------------------------------------------------