├── .gitignore ├── Android.bp ├── Changes.md ├── CleanSpec.mk ├── Deprecation.md ├── OWNERS ├── PREUPLOAD.cfg ├── README.md ├── Usage.txt ├── backported_fixes ├── Android.bp ├── OWNERS ├── applied_fixes │ ├── ki350037023.txtpb │ └── ki385124056.txtpb ├── backported_fixes.proto ├── src │ └── java │ │ └── com │ │ └── android │ │ └── build │ │ └── backportedfixes │ │ ├── CombineBackportedFixes.java │ │ ├── WriteBackportedFixesPropFile.java │ │ └── common │ │ └── Parser.java └── tests │ └── java │ └── com │ └── android │ └── build │ └── backportedfixes │ ├── CombineBackportedFixesTest.java │ ├── WriteBackportedFixesPropFileTest.java │ └── common │ └── ParserTest.java ├── banchanHelp.sh ├── ci ├── Android.bp ├── AndroidTest.xml.template ├── build_context.py ├── build_device_and_tests ├── build_metadata ├── build_test_suites ├── build_test_suites.py ├── build_test_suites_local_test.py ├── build_test_suites_test.py ├── buildbot.py ├── ci_test_lib.py ├── dump_product_config ├── metrics_agent.py ├── optimized_targets.py ├── optimized_targets_test.py ├── test_discovery_agent.py └── test_mapping_module_retriever.py ├── common ├── core.mk ├── json.mk ├── math.mk └── strings.mk ├── core ├── 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.mk │ ├── HOST_linux.mk │ ├── TARGET_linux-arm.mk │ ├── TARGET_linux-arm64.mk │ ├── TARGET_linux-riscv64.mk │ ├── TARGET_linux-x86.mk │ ├── TARGET_linux-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_odex_install.mk ├── distdir.mk ├── dumpconfig.mk ├── dumpvar.mk ├── dupcheck.sh ├── 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 ├── 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 ├── layoutlib_data.mk ├── link_type.mk ├── local_current_sdk.mk ├── local_systemsdk.mk ├── local_vendor_product.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 ├── packaging │ └── flags.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 ├── product_validation_checks.mk ├── proguard.flags ├── proguard.jacoco.flags ├── proguard │ ├── checknotnull.flags │ └── kotlin.flags ├── proguard_basic_keeps.flags ├── project_definitions.mk ├── python_binary_host_mobly_test_config_template.xml ├── python_binary_host_test_config_template.xml ├── ravenwood_test_config_template.xml ├── rbe.mk ├── release_config.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_extra_config.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 ├── sysprop_config.mk ├── target_test_internal.mk ├── tasks │ ├── README.dex_preopt_check.md │ ├── art-host-tests.mk │ ├── art.mk │ ├── automotive-general-tests.mk │ ├── automotive-sdv-tests.mk │ ├── automotive-tests.mk │ ├── autorepro.mk │ ├── berberis_test.mk │ ├── build_custom_images.mk │ ├── catbox.mk │ ├── check-abi-dump-list.mk │ ├── csuite.mk │ ├── cts-v-host.mk │ ├── cts.mk │ ├── cts_root.mk │ ├── dex_preopt_check.mk │ ├── dts.mk │ ├── find-shareduid-violation.mk │ ├── fontchain_lint.mk │ ├── general-tests.mk │ ├── host-unit-tests.mk │ ├── host_init_verifier.mk │ ├── mcts.mk │ ├── meta-lic.mk │ ├── module-info.mk │ ├── mts.mk │ ├── oem_image.mk │ ├── offline-sdk-docs.mk │ ├── owners.mk │ ├── platform_availability_check.mk │ ├── prebuilt_tradefed.mk │ ├── sdk-addon.mk │ ├── sts.mk │ ├── tools │ │ ├── build_custom_image.mk │ │ ├── compatibility.mk │ │ └── package-modules.mk │ ├── tradefed-tests-list.mk │ ├── vendor_module_check.mk │ ├── vts-core-tests.mk │ ├── with-license.mk │ └── wvts.mk └── version_util.mk ├── envsetup.sh ├── help.sh ├── navbar.md ├── packaging ├── distdir.mk ├── main.mk └── main_soong_only.mk ├── rbesetup.sh ├── shell_utils.sh ├── tapasHelp.sh ├── target ├── board │ ├── BoardConfigGsiCommon.mk │ ├── BoardConfigMainlineCommon.mk │ ├── BoardConfigPixelCommon.mk │ ├── android-info.mk │ ├── 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_arm64_plus_armv7 │ │ ├── BoardConfig.mk │ │ ├── README.txt │ │ └── device.mk │ ├── 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_riscv64 │ │ ├── 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 │ ├── aosp_64bitonly_x86_64.mk │ ├── aosp_arm.mk │ ├── aosp_arm64.mk │ ├── aosp_arm64_fullmte.mk │ ├── aosp_arm64_plus_armv7.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 │ ├── app_function_extensions.mk │ ├── base.mk │ ├── base_product.mk │ ├── base_system.mk │ ├── base_system_ext.mk │ ├── base_vendor.mk │ ├── build_variables.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 │ ├── full.manifest.xml │ ├── full.mk │ ├── full_base.mk │ ├── full_base_telephony.mk │ ├── full_x86.mk │ ├── fullmte.mk │ ├── generic.mk │ ├── generic │ ├── Android.bp │ ├── OWNERS │ └── erofs_compress_hints.txt │ ├── 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 │ ├── 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 │ ├── hsum_common.mk │ ├── languages_default.mk │ ├── languages_full.mk │ ├── large_screen_common.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_riscv64.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_with_runtime_apis.mk │ ├── security │ ├── Android.bp │ ├── README │ ├── bluetooth.pk8 │ ├── bluetooth.x509.pem │ ├── cts_uicc_2021.pk8 │ ├── cts_uicc_2021.x509.pem │ ├── gmscompat_lib.pk8 │ ├── gmscompat_lib.x509.pem │ ├── media.pk8 │ ├── media.x509.pem │ ├── networkstack.pk8 │ ├── networkstack.x509.pem │ ├── nfc.pk8 │ ├── nfc.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 │ └── preinstalled_packages_handheld_system_ext.xml │ ├── telephony.mk │ ├── telephony_product.mk │ ├── telephony_system.mk │ ├── telephony_system_ext.mk │ ├── telephony_vendor.mk │ ├── updatable_apex.mk │ ├── userspace_reboot.mk │ ├── virtual_ab_ota.mk │ ├── virtual_ab_ota │ ├── OWNERS │ ├── 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 │ └── vabc_features.mk │ ├── virtual_ab_ota_plus_non_ab.mk │ ├── window_extensions.mk │ └── window_extensions_base.mk ├── teams ├── Android.bp └── OWNERS ├── 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 ├── single_value_inheritance_2 │ ├── a.rbc │ ├── b.rbc │ ├── c.rbc │ ├── d.rbc │ ├── product.rbc │ └── test.rbc └── version_defaults.rbc └── tools ├── Android.bp ├── aconfig ├── .editorconfig ├── .gitignore ├── Cargo.toml ├── MODULE_LICENSE_APACHE2 ├── OWNERS ├── PREUPLOAD.cfg ├── TEST_MAPPING ├── aconfig │ ├── Android.bp │ ├── Cargo.toml │ ├── build.rs │ ├── config │ │ └── mainline_beta_namespaces_apr_25.json │ ├── src │ │ ├── cli_parser.rs │ │ ├── codegen │ │ │ ├── cpp.rs │ │ │ ├── java.rs │ │ │ ├── mod.rs │ │ │ └── rust.rs │ │ ├── commands.rs │ │ ├── dump.rs │ │ ├── main.rs │ │ ├── storage │ │ │ ├── flag_info.rs │ │ │ ├── flag_table.rs │ │ │ ├── flag_value.rs │ │ │ ├── mod.rs │ │ │ └── package_table.rs │ │ └── test.rs │ ├── templates │ │ ├── CustomFeatureFlags.java.template │ │ ├── ExportedFlags.java.template │ │ ├── FakeFeatureFlagsImpl.java.template │ │ ├── FeatureFlags.java.template │ │ ├── FeatureFlagsImpl.deviceConfig.java.template │ │ ├── FeatureFlagsImpl.exported.java.template │ │ ├── FeatureFlagsImpl.legacy_flag.internal.java.template │ │ ├── FeatureFlagsImpl.new_storage.java.template │ │ ├── FeatureFlagsImpl.test_mode.java.template │ │ ├── Flags.java.template │ │ ├── cpp_exported_header.template │ │ ├── cpp_source_file.template │ │ ├── rust.template │ │ └── rust_test.template │ └── tests │ │ ├── AconfigHostTest.java │ │ ├── AconfigTest.java │ │ ├── AndroidManifest.xml │ │ ├── aconfig_exported_mode_test.cpp │ │ ├── aconfig_exported_mode_test.rs │ │ ├── aconfig_force_read_only_mode_test.cpp │ │ ├── aconfig_force_read_only_mode_test.rs │ │ ├── aconfig_prod_mode_test.rs │ │ ├── aconfig_test.cpp │ │ ├── aconfig_test_mode_test.rs │ │ ├── aconfig_test_test_variant.cpp │ │ ├── first.values │ │ ├── mainline_beta_exported_mockup.aconfig │ │ ├── mainline_beta_mockup.aconfig │ │ ├── mainline_beta_mockup.values │ │ ├── mainline_beta_namespaces.json │ │ ├── read_only_test.aconfig │ │ ├── read_only_test.values │ │ ├── second.values │ │ ├── storage_test_1.aconfig │ │ ├── storage_test_1.values │ │ ├── storage_test_2.aconfig │ │ ├── storage_test_2.values │ │ ├── storage_test_4.aconfig │ │ ├── storage_test_4.values │ │ ├── test.aconfig │ │ ├── test_exported.aconfig │ │ ├── test_force_read_only.aconfig │ │ ├── test_second_package.aconfig │ │ └── third.values ├── aconfig_device_paths │ ├── Android.bp │ ├── Cargo.toml │ ├── mainline_aconfig_flags_paths.txt │ ├── partition_aconfig_flags_paths.txt │ ├── src │ │ ├── DeviceProtosTemplate.java │ │ ├── DeviceProtosTestUtilTemplate.java │ │ ├── HostDeviceProtosTemplate.java │ │ └── lib.rs │ └── test │ │ ├── Android.bp │ │ ├── AndroidManifest.xml │ │ └── src │ │ └── DeviceProtosTestUtilTest.java ├── aconfig_flags │ ├── Android.bp │ ├── Cargo.toml │ ├── flags.aconfig │ └── src │ │ └── lib.rs ├── aconfig_protos │ ├── Android.bp │ ├── Cargo.toml │ ├── build.rs │ ├── jarjar-nano-rules.txt │ ├── protos │ │ ├── aconfig.proto │ │ └── aconfig_internal.proto │ └── src │ │ └── lib.rs ├── aconfig_storage_file │ ├── Android.bp │ ├── Cargo.toml │ ├── aconfig_storage_file.cpp │ ├── build.rs │ ├── include │ │ └── aconfig_storage │ │ │ └── aconfig_storage_file.hpp │ ├── protos │ │ └── aconfig_storage_metadata.proto │ ├── src │ │ ├── flag_info.rs │ │ ├── flag_table.rs │ │ ├── flag_value.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ ├── package_table.rs │ │ ├── protos.rs │ │ ├── sip_hasher13.rs │ │ └── test_utils.rs │ ├── srcs │ │ └── android │ │ │ └── aconfig │ │ │ └── storage │ │ │ ├── AconfigStorageException.java │ │ │ ├── ByteBufferReader.java │ │ │ ├── FileType.java │ │ │ ├── FlagTable.java │ │ │ ├── FlagType.java │ │ │ ├── FlagValueList.java │ │ │ ├── PackageTable.java │ │ │ ├── SipHasher13.java │ │ │ ├── StorageFileProvider.java │ │ │ └── TableUtils.java │ └── tests │ │ ├── Android.bp │ │ ├── AndroidManifest.xml │ │ ├── AndroidStorageJaveTest.xml │ │ ├── data │ │ ├── v1 │ │ │ ├── flag_v1.info │ │ │ ├── flag_v1.map │ │ │ ├── flag_v1.val │ │ │ └── package_v1.map │ │ ├── v2 │ │ │ ├── flag_v2.info │ │ │ ├── flag_v2.map │ │ │ ├── flag_v2.val │ │ │ └── package_v2.map │ │ └── v3 │ │ │ ├── flag_v3.info │ │ │ ├── flag_v3.map │ │ │ ├── flag_v3.val │ │ │ └── package_v3.map │ │ ├── jarjar.txt │ │ ├── srcs │ │ ├── ByteBufferReaderTest.java │ │ ├── FlagTableTest.java │ │ ├── FlagValueListTest.java │ │ ├── PackageTableTest.java │ │ ├── SipHasher13Test.java │ │ ├── StorageFileProviderTest.java │ │ └── TestDataUtils.java │ │ └── storage_file_test.cpp ├── aconfig_storage_read_api │ ├── Android.bp │ ├── Cargo.toml │ ├── aconfig_storage_read_api.cpp │ ├── build.rs │ ├── include │ │ └── aconfig_storage │ │ │ └── aconfig_storage_read_api.hpp │ ├── libaconfig_storage_read_api_cc.map │ ├── src │ │ ├── flag_info_query.rs │ │ ├── flag_table_query.rs │ │ ├── flag_value_query.rs │ │ ├── lib.rs │ │ ├── mapped_file.rs │ │ └── package_table_query.rs │ ├── srcs │ │ ├── android │ │ │ ├── aconfig │ │ │ │ └── storage │ │ │ │ │ ├── AconfigStorageReadAPI.java │ │ │ │ │ ├── FlagReadContext.java │ │ │ │ │ └── PackageReadContext.java │ │ │ └── os │ │ │ │ └── flagging │ │ │ │ ├── PlatformAconfigPackage.java │ │ │ │ └── PlatformAconfigPackageInternal.java │ │ └── lib.rs │ └── tests │ │ ├── AconfigStorageReadFunctionalTest.xml │ │ ├── Android.bp │ │ ├── AndroidManifest.xml │ │ ├── data │ │ ├── v1 │ │ │ ├── flag_v1.info │ │ │ ├── flag_v1.map │ │ │ ├── flag_v1.val │ │ │ └── package_v1.map │ │ └── v2 │ │ │ ├── flag_v2.info │ │ │ ├── flag_v2.map │ │ │ ├── flag_v2.val │ │ │ └── package_v2.map │ │ ├── functional │ │ └── srcs │ │ │ ├── AconfigStorageReadAPITest.java │ │ │ ├── PlatformAconfigPackageInternalTest.java │ │ │ └── PlatformAconfigPackageTest.java │ │ ├── storage_read_api_test.cpp │ │ └── storage_read_api_test.rs ├── aconfig_storage_write_api │ ├── Android.bp │ ├── Cargo.toml │ ├── src │ │ ├── flag_info_update.rs │ │ ├── flag_value_update.rs │ │ ├── lib.rs │ │ ├── mapped_file.rs │ │ └── test_utils.rs │ └── tests │ │ ├── Android.bp │ │ ├── flag.info │ │ ├── flag.val │ │ └── storage_write_api_test.rs ├── aflags │ ├── Android.bp │ ├── Cargo.toml │ └── src │ │ ├── aconfig_storage_source.rs │ │ ├── device_config_source.rs │ │ ├── load_protos.rs │ │ └── main.rs ├── convert_finalized_flags │ ├── Android.bp │ ├── Cargo.toml │ ├── sdk │ │ ├── 35 │ │ │ └── extended_flags_list.txt │ │ └── 36 │ │ │ └── extended_flags_list.txt │ └── src │ │ ├── lib.rs │ │ └── main.rs ├── exported_flag_check │ ├── Android.bp │ ├── Cargo.toml │ ├── non_api_flags_list.txt │ ├── non_api_flags_packages.txt │ ├── skip_api_filter_list.txt │ ├── src │ │ ├── main.rs │ │ └── utils.rs │ └── tests │ │ ├── api-signature-file.txt │ │ ├── finalized-flags.txt │ │ └── flags.textproto ├── fake_device_config │ ├── Android.bp │ └── src │ │ └── android │ │ ├── os │ │ ├── Build.java │ │ └── flagging │ │ │ ├── AconfigPackage.java │ │ │ ├── AconfigPackageInternal.java │ │ │ ├── PlatformAconfigPackage.java │ │ │ └── PlatformAconfigPackageInternal.java │ │ ├── provider │ │ └── DeviceConfig.java │ │ └── util │ │ └── Log.java ├── overrideflags │ └── overrideflags.py └── rustfmt.toml ├── 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 ├── canoninja ├── README.md ├── canoninja.go ├── canoninja_test.go ├── cmd │ └── canoninja.go └── go.mod ├── characteristics_rro_generator.py ├── check-flagged-apis ├── Android.bp ├── OWNERS ├── check-flagged-apis.sh └── src │ └── com │ └── android │ └── checkflaggedapis │ ├── CheckFlaggedApisTest.kt │ └── Main.kt ├── check_elf_file.py ├── check_identical_lib.sh ├── check_radio_versions.py ├── compare_builds.py ├── compliance ├── Android.bp ├── README.md ├── cmd │ ├── 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 │ ├── 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.work ├── 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 ├── dependency_mapper ├── Android.bp ├── OWNERS ├── README.md ├── proto │ ├── Android.bp │ ├── dependency.pb.go │ ├── dependency.proto │ ├── go.mod │ └── regen.sh ├── src │ └── com │ │ └── android │ │ └── dependencymapper │ │ ├── ClassDependenciesVisitor.java │ │ ├── ClassDependencyAnalyzer.java │ │ ├── ClassDependencyData.java │ │ ├── ClassRelevancyFilter.java │ │ ├── DependencyMapper.java │ │ ├── JavaSourceAnalyzer.java │ │ ├── JavaSourceData.java │ │ ├── Main.java │ │ └── Utils.java └── tests │ ├── res │ ├── testdata │ │ ├── annotation │ │ │ ├── AnnotationUsage.java │ │ │ ├── RuntimeAnnotation.java │ │ │ └── SourceAnnotation.java │ │ ├── constants │ │ │ ├── ConstantDefinition.java │ │ │ └── ConstantUsage.java │ │ ├── inheritance │ │ │ ├── BaseClass.java │ │ │ ├── BaseImpl.java │ │ │ └── InheritanceUsage.java │ │ └── methods │ │ │ ├── FieldUsage.java │ │ │ ├── MethodUsage.java │ │ │ ├── ReferenceClass1.java │ │ │ └── ReferenceClass2.java │ └── testfiles │ │ ├── dependency-mapper-test-data.jar │ │ └── sources.rsp │ └── src │ └── com │ └── android │ └── dependencymapper │ ├── ClassDependencyAnalyzerTest.java │ ├── ClassRelevancyFilterTest.java │ ├── DependencyMapperTest.java │ ├── JavaSourceAnalyzerTest.java │ └── UtilsTest.java ├── 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 ├── edit_monitor ├── Android.bp ├── OWNERS ├── daemon_manager.py ├── daemon_manager_test.py ├── edit_monitor.py ├── edit_monitor_integration_test.py ├── edit_monitor_test.py ├── main.py ├── proto │ └── edit_event.proto ├── utils.py └── utils_test.py ├── envsetup ├── run_envsetup_tests └── spam_for_lunch ├── event_log_tags.py ├── exercise_compare_builds ├── extract_kernel.py ├── fat16copy.py ├── filelistdiff ├── Android.bp ├── OWNERS ├── README.md ├── allowlist ├── allowlist_next └── file_list_diff.py ├── fileslist_util.py ├── finalization ├── OWNERS ├── README.md ├── build-step-0-and-m.sh ├── build-step-0.sh ├── 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 ├── command-line-options.sh ├── dryrun-cleanup.sh ├── dryrun-step-1-and-2.sh ├── dryrun-step-1.sh ├── environment.sh ├── finalization-test │ ├── Android.bp │ ├── TEST_MAPPING │ ├── build_flags.rs │ └── test.rs ├── finalize-sdk-rel.sh ├── finalize-sdk-resources.sh ├── finalize-vintf-resources.sh ├── frameworks_base.apply_hack.diff ├── frameworks_base.revert_hack.diff ├── localonly-steps.sh ├── step-0.sh ├── step-1.sh └── step-2.sh ├── find_static_candidates.py ├── findleaves.py ├── fixlinebreaks.sh ├── fs_config ├── Android.bp ├── 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 ├── generate-enforce-rro-android-manifest.py ├── generate-notice-files.py ├── generate-self-extracting-archive.py ├── generate_gts_shared_report.py ├── ide_query ├── OWNERS ├── cc_analyzer │ ├── Android.bp │ ├── README.md │ ├── analyzer.cc │ ├── analyzer.h │ ├── builtin_headers.cc │ ├── builtin_headers.h │ ├── include_scanner.cc │ ├── include_scanner.h │ └── main.cc ├── cc_analyzer_proto │ ├── Android.bp │ ├── cc_analyzer.pb.go │ ├── cc_analyzer.proto │ └── regen.sh ├── go.mod ├── go.work ├── go.work.sum ├── ide_query.go ├── ide_query.sh ├── ide_query_proto │ ├── ide_query.pb.go │ ├── ide_query.proto │ └── regen.sh └── prober_scripts │ ├── cpp │ ├── Android.bp │ ├── foo.proto │ └── general.cc │ ├── cpp_suite.textpb │ ├── ide_query.out │ ├── jvm │ ├── Android.bp │ ├── Bar.java │ ├── Foo.java │ ├── ide_query.out │ ├── other │ │ └── Other.java │ └── suite.textpb │ └── regen.sh ├── java-event-log-tags.py ├── libhost ├── Android.bp ├── CopyFile.c └── include │ └── host │ └── CopyFile.h ├── list_files.py ├── lunchable ├── merge-event-log-tags.py ├── missing_soong_module_info.py ├── mk2bp_catalog.py ├── mk2bp_partition.py ├── normalize_path.py ├── otatools_package └── Android.bp ├── perf ├── benchmarks ├── format_benchmarks ├── pretty.py └── utils.py ├── post_process_props.py ├── post_process_props_unittest.xml ├── print_module_licenses.sh ├── product_config ├── Android.bp ├── MANIFEST.MF ├── TEST_MANIFEST.MF ├── 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 │ ├── bzl_loads_scl.bzl │ ├── bzl_loads_scl_2.bzl │ ├── file_ops.star │ ├── load.star │ ├── module1.star │ ├── module2.star │ ├── scl_incorrectly_loads_bzl.scl │ ├── shell.star │ ├── test_scl.scl │ └── test_scl_symlink.scl ├── record-finalized-flags ├── .gitignore ├── Android.bp ├── Cargo.toml ├── OWNERS ├── src │ ├── finalized_flags.rs │ ├── flag_report.rs │ └── main.rs └── tests │ ├── finalized-flags.txt │ └── flag-report.csv ├── 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_raw_img.py ├── ota_from_target_files.py ├── ota_metadata.proto ├── ota_metadata_pb2.py ├── ota_package_parser.py ├── ota_signing_utils.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 │ ├── 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 ├── compliance_metadata.py ├── gen_notice_xml.py ├── gen_sbom.py ├── generate-sbom-framework_res.py ├── generate-sbom.py ├── sbom_data.py ├── sbom_data_test.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 ├── tool_event_logger ├── Android.bp ├── OWNERS ├── proto │ └── tool_event.proto ├── tool_event_logger.py └── tool_event_logger_test.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 │ ├── apkWithUncompressedSharedLibs.zip │ ├── 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 | -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/Android.bp -------------------------------------------------------------------------------- /Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/Changes.md -------------------------------------------------------------------------------- /CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/CleanSpec.mk -------------------------------------------------------------------------------- /Deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/Deprecation.md -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | include platform/build/soong:/OWNERS 2 | -------------------------------------------------------------------------------- /PREUPLOAD.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/PREUPLOAD.cfg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/README.md -------------------------------------------------------------------------------- /Usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/Usage.txt -------------------------------------------------------------------------------- /backported_fixes/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/backported_fixes/Android.bp -------------------------------------------------------------------------------- /backported_fixes/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/backported_fixes/OWNERS -------------------------------------------------------------------------------- /backported_fixes/backported_fixes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/backported_fixes/backported_fixes.proto -------------------------------------------------------------------------------- /banchanHelp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/banchanHelp.sh -------------------------------------------------------------------------------- /ci/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/Android.bp -------------------------------------------------------------------------------- /ci/AndroidTest.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/AndroidTest.xml.template -------------------------------------------------------------------------------- /ci/build_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/build_context.py -------------------------------------------------------------------------------- /ci/build_device_and_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/build_device_and_tests -------------------------------------------------------------------------------- /ci/build_metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/build_metadata -------------------------------------------------------------------------------- /ci/build_test_suites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/build_test_suites -------------------------------------------------------------------------------- /ci/build_test_suites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/build_test_suites.py -------------------------------------------------------------------------------- /ci/build_test_suites_local_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/build_test_suites_local_test.py -------------------------------------------------------------------------------- /ci/build_test_suites_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/build_test_suites_test.py -------------------------------------------------------------------------------- /ci/buildbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/buildbot.py -------------------------------------------------------------------------------- /ci/ci_test_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/ci_test_lib.py -------------------------------------------------------------------------------- /ci/dump_product_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/dump_product_config -------------------------------------------------------------------------------- /ci/metrics_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/metrics_agent.py -------------------------------------------------------------------------------- /ci/optimized_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/optimized_targets.py -------------------------------------------------------------------------------- /ci/optimized_targets_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/optimized_targets_test.py -------------------------------------------------------------------------------- /ci/test_discovery_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/test_discovery_agent.py -------------------------------------------------------------------------------- /ci/test_mapping_module_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/ci/test_mapping_module_retriever.py -------------------------------------------------------------------------------- /common/core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/common/core.mk -------------------------------------------------------------------------------- /common/json.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/common/json.mk -------------------------------------------------------------------------------- /common/math.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/common/math.mk -------------------------------------------------------------------------------- /common/strings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/common/strings.mk -------------------------------------------------------------------------------- /core/LINUX_KERNEL_COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/LINUX_KERNEL_COPYING -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/OWNERS -------------------------------------------------------------------------------- /core/WINPTHREADS_COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/WINPTHREADS_COPYING -------------------------------------------------------------------------------- /core/aapt2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/aapt2.mk -------------------------------------------------------------------------------- /core/aapt_flags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/aapt_flags.mk -------------------------------------------------------------------------------- /core/allowed_ndk_types.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/allowed_ndk_types.mk -------------------------------------------------------------------------------- /core/android_manifest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/android_manifest.mk -------------------------------------------------------------------------------- /core/android_soong_config_vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/android_soong_config_vars.mk -------------------------------------------------------------------------------- /core/app_certificate_validate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/app_certificate_validate.mk -------------------------------------------------------------------------------- /core/app_prebuilt_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/app_prebuilt_internal.mk -------------------------------------------------------------------------------- /core/art_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/art_config.mk -------------------------------------------------------------------------------- /core/artifact_path_requirements.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/artifact_path_requirements.mk -------------------------------------------------------------------------------- /core/autogen_test_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/autogen_test_config.mk -------------------------------------------------------------------------------- /core/base_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/base_rules.mk -------------------------------------------------------------------------------- /core/binary.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/binary.mk -------------------------------------------------------------------------------- /core/board_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/board_config.mk -------------------------------------------------------------------------------- /core/board_config_wifi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/board_config_wifi.mk -------------------------------------------------------------------------------- /core/build-system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/build-system.html -------------------------------------------------------------------------------- /core/build_id.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/build_id.mk -------------------------------------------------------------------------------- /core/build_rro_package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/build_rro_package.mk -------------------------------------------------------------------------------- /core/cc_prebuilt_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/cc_prebuilt_internal.mk -------------------------------------------------------------------------------- /core/ccache.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/ccache.mk -------------------------------------------------------------------------------- /core/check_elf_file.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/check_elf_file.mk -------------------------------------------------------------------------------- /core/checktree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/checktree -------------------------------------------------------------------------------- /core/clang/HOST_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/clang/HOST_x86.mk -------------------------------------------------------------------------------- /core/clang/HOST_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/clang/HOST_x86_64.mk -------------------------------------------------------------------------------- /core/clang/TARGET_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/clang/TARGET_arm.mk -------------------------------------------------------------------------------- /core/clang/TARGET_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/clang/TARGET_arm64.mk -------------------------------------------------------------------------------- /core/clang/TARGET_riscv64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/clang/TARGET_riscv64.mk -------------------------------------------------------------------------------- /core/clang/TARGET_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/clang/TARGET_x86.mk -------------------------------------------------------------------------------- /core/clang/TARGET_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/clang/TARGET_x86_64.mk -------------------------------------------------------------------------------- /core/clang/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/clang/config.mk -------------------------------------------------------------------------------- /core/clang/tidy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/clang/tidy.mk -------------------------------------------------------------------------------- /core/cleanbuild.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/cleanbuild.mk -------------------------------------------------------------------------------- /core/cleanspec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/cleanspec.mk -------------------------------------------------------------------------------- /core/clear_vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/clear_vars.mk -------------------------------------------------------------------------------- /core/combo/HOST_darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/combo/HOST_darwin.mk -------------------------------------------------------------------------------- /core/combo/HOST_linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/combo/HOST_linux.mk -------------------------------------------------------------------------------- /core/combo/TARGET_linux-arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/combo/TARGET_linux-arm.mk -------------------------------------------------------------------------------- /core/combo/TARGET_linux-arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/combo/TARGET_linux-arm64.mk -------------------------------------------------------------------------------- /core/combo/TARGET_linux-riscv64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/combo/TARGET_linux-riscv64.mk -------------------------------------------------------------------------------- /core/combo/TARGET_linux-x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/combo/TARGET_linux-x86.mk -------------------------------------------------------------------------------- /core/combo/TARGET_linux-x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/combo/TARGET_linux-x86_64.mk -------------------------------------------------------------------------------- /core/combo/javac.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/combo/javac.mk -------------------------------------------------------------------------------- /core/combo/select.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/combo/select.mk -------------------------------------------------------------------------------- /core/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/config.mk -------------------------------------------------------------------------------- /core/config_sanitizers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/config_sanitizers.mk -------------------------------------------------------------------------------- /core/configure_module_stem.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/configure_module_stem.mk -------------------------------------------------------------------------------- /core/copy_headers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/copy_headers.mk -------------------------------------------------------------------------------- /core/cxx_stl_setup.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/cxx_stl_setup.mk -------------------------------------------------------------------------------- /core/definitions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/definitions.mk -------------------------------------------------------------------------------- /core/deprecation.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/deprecation.mk -------------------------------------------------------------------------------- /core/dex_preopt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/dex_preopt.mk -------------------------------------------------------------------------------- /core/dex_preopt_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/dex_preopt_config.mk -------------------------------------------------------------------------------- /core/dex_preopt_config_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/dex_preopt_config_merger.py -------------------------------------------------------------------------------- /core/dex_preopt_odex_install.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/dex_preopt_odex_install.mk -------------------------------------------------------------------------------- /core/distdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/distdir.mk -------------------------------------------------------------------------------- /core/dumpconfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/dumpconfig.mk -------------------------------------------------------------------------------- /core/dumpvar.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/dumpvar.mk -------------------------------------------------------------------------------- /core/dupcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/dupcheck.sh -------------------------------------------------------------------------------- /core/dynamic_binary.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/dynamic_binary.mk -------------------------------------------------------------------------------- /core/empty_test_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/empty_test_config.xml -------------------------------------------------------------------------------- /core/envsetup.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/envsetup.mk -------------------------------------------------------------------------------- /core/executable.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/executable.mk -------------------------------------------------------------------------------- /core/executable_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/executable_internal.mk -------------------------------------------------------------------------------- /core/executable_prefer_symlink.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/executable_prefer_symlink.mk -------------------------------------------------------------------------------- /core/filter_symbols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/filter_symbols.sh -------------------------------------------------------------------------------- /core/force_aapt2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/force_aapt2.mk -------------------------------------------------------------------------------- /core/fuzz_test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/fuzz_test.mk -------------------------------------------------------------------------------- /core/generate_enforce_rro.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/generate_enforce_rro.mk -------------------------------------------------------------------------------- /core/header_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/header_library.mk -------------------------------------------------------------------------------- /core/header_library_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/header_library_internal.mk -------------------------------------------------------------------------------- /core/host_executable.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/host_executable.mk -------------------------------------------------------------------------------- /core/host_executable_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/host_executable_internal.mk -------------------------------------------------------------------------------- /core/host_java_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/host_java_library.mk -------------------------------------------------------------------------------- /core/host_java_library_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/host_java_library_common.mk -------------------------------------------------------------------------------- /core/host_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/host_prebuilt.mk -------------------------------------------------------------------------------- /core/host_shared_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/host_shared_library.mk -------------------------------------------------------------------------------- /core/host_shared_library_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/host_shared_library_internal.mk -------------------------------------------------------------------------------- /core/host_static_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/host_static_library.mk -------------------------------------------------------------------------------- /core/host_static_library_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/host_static_library_internal.mk -------------------------------------------------------------------------------- /core/install_jni_libs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/install_jni_libs.mk -------------------------------------------------------------------------------- /core/install_jni_libs_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/install_jni_libs_internal.mk -------------------------------------------------------------------------------- /core/instrumentation_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/instrumentation_test_config_template.xml -------------------------------------------------------------------------------- /core/jacoco.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/jacoco.mk -------------------------------------------------------------------------------- /core/java.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/java.mk -------------------------------------------------------------------------------- /core/java_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/java_common.mk -------------------------------------------------------------------------------- /core/java_host_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/java_host_test_config_template.xml -------------------------------------------------------------------------------- /core/java_host_unit_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/java_host_unit_test_config_template.xml -------------------------------------------------------------------------------- /core/java_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/java_library.mk -------------------------------------------------------------------------------- /core/java_prebuilt_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/java_prebuilt_internal.mk -------------------------------------------------------------------------------- /core/java_renderscript.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/java_renderscript.mk -------------------------------------------------------------------------------- /core/java_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/java_test_config_template.xml -------------------------------------------------------------------------------- /core/layoutlib_data.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/layoutlib_data.mk -------------------------------------------------------------------------------- /core/link_type.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/link_type.mk -------------------------------------------------------------------------------- /core/local_current_sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/local_current_sdk.mk -------------------------------------------------------------------------------- /core/local_systemsdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/local_systemsdk.mk -------------------------------------------------------------------------------- /core/local_vendor_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/local_vendor_product.mk -------------------------------------------------------------------------------- /core/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/main.mk -------------------------------------------------------------------------------- /core/misc_prebuilt_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/misc_prebuilt_internal.mk -------------------------------------------------------------------------------- /core/module_arch_supported.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/module_arch_supported.mk -------------------------------------------------------------------------------- /core/multi_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/multi_prebuilt.mk -------------------------------------------------------------------------------- /core/multilib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/multilib.mk -------------------------------------------------------------------------------- /core/native_benchmark_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/native_benchmark_test_config_template.xml -------------------------------------------------------------------------------- /core/native_host_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/native_host_test_config_template.xml -------------------------------------------------------------------------------- /core/native_test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/native_test.mk -------------------------------------------------------------------------------- /core/native_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/native_test_config_template.xml -------------------------------------------------------------------------------- /core/ninja_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/ninja_config.mk -------------------------------------------------------------------------------- /core/node_fns.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/node_fns.mk -------------------------------------------------------------------------------- /core/notice_files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/notice_files.mk -------------------------------------------------------------------------------- /core/os_licensing.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/os_licensing.mk -------------------------------------------------------------------------------- /core/pack_dyn_relocs_setup.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/pack_dyn_relocs_setup.mk -------------------------------------------------------------------------------- /core/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/package.mk -------------------------------------------------------------------------------- /core/package_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/package_internal.mk -------------------------------------------------------------------------------- /core/packaging/flags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/packaging/flags.mk -------------------------------------------------------------------------------- /core/pathmap.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/pathmap.mk -------------------------------------------------------------------------------- /core/phony_package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/phony_package.mk -------------------------------------------------------------------------------- /core/prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/prebuilt.mk -------------------------------------------------------------------------------- /core/prebuilt_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/prebuilt_internal.mk -------------------------------------------------------------------------------- /core/process_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/process_wrapper.sh -------------------------------------------------------------------------------- /core/process_wrapper_gdb.cmds: -------------------------------------------------------------------------------- 1 | run 2 | -------------------------------------------------------------------------------- /core/process_wrapper_gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/process_wrapper_gdb.sh -------------------------------------------------------------------------------- /core/product-graph.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/product-graph.mk -------------------------------------------------------------------------------- /core/product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/product.mk -------------------------------------------------------------------------------- /core/product_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/product_config.mk -------------------------------------------------------------------------------- /core/product_config.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/product_config.rbc -------------------------------------------------------------------------------- /core/product_validation_checks.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/product_validation_checks.mk -------------------------------------------------------------------------------- /core/proguard.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/proguard.flags -------------------------------------------------------------------------------- /core/proguard.jacoco.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/proguard.jacoco.flags -------------------------------------------------------------------------------- /core/proguard/checknotnull.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/proguard/checknotnull.flags -------------------------------------------------------------------------------- /core/proguard/kotlin.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/proguard/kotlin.flags -------------------------------------------------------------------------------- /core/proguard_basic_keeps.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/proguard_basic_keeps.flags -------------------------------------------------------------------------------- /core/project_definitions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/project_definitions.mk -------------------------------------------------------------------------------- /core/ravenwood_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/ravenwood_test_config_template.xml -------------------------------------------------------------------------------- /core/rbe.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/rbe.mk -------------------------------------------------------------------------------- /core/release_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/release_config.mk -------------------------------------------------------------------------------- /core/robolectric_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/robolectric_test_config_template.xml -------------------------------------------------------------------------------- /core/root.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/root.mk -------------------------------------------------------------------------------- /core/rust_device_benchmark_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/rust_device_benchmark_config_template.xml -------------------------------------------------------------------------------- /core/rust_device_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/rust_device_test_config_template.xml -------------------------------------------------------------------------------- /core/rust_host_benchmark_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/rust_host_benchmark_config_template.xml -------------------------------------------------------------------------------- /core/rust_host_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/rust_host_test_config_template.xml -------------------------------------------------------------------------------- /core/sbom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/sbom.mk -------------------------------------------------------------------------------- /core/sdk_check.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/sdk_check.mk -------------------------------------------------------------------------------- /core/shared_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/shared_library.mk -------------------------------------------------------------------------------- /core/shared_library_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/shared_library_internal.mk -------------------------------------------------------------------------------- /core/shell_test_config_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/shell_test_config_template.xml -------------------------------------------------------------------------------- /core/soong_android_app_set.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/soong_android_app_set.mk -------------------------------------------------------------------------------- /core/soong_app_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/soong_app_prebuilt.mk -------------------------------------------------------------------------------- /core/soong_cc_rust_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/soong_cc_rust_prebuilt.mk -------------------------------------------------------------------------------- /core/soong_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/soong_config.mk -------------------------------------------------------------------------------- /core/soong_droiddoc_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/soong_droiddoc_prebuilt.mk -------------------------------------------------------------------------------- /core/soong_extra_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/soong_extra_config.mk -------------------------------------------------------------------------------- /core/soong_java_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/soong_java_prebuilt.mk -------------------------------------------------------------------------------- /core/static_java_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/static_java_library.mk -------------------------------------------------------------------------------- /core/static_library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/static_library.mk -------------------------------------------------------------------------------- /core/static_library_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/static_library_internal.mk -------------------------------------------------------------------------------- /core/suite_host_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/suite_host_config.mk -------------------------------------------------------------------------------- /core/support_libraries.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/support_libraries.mk -------------------------------------------------------------------------------- /core/sysprop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/sysprop.mk -------------------------------------------------------------------------------- /core/sysprop_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/sysprop_config.mk -------------------------------------------------------------------------------- /core/target_test_internal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/target_test_internal.mk -------------------------------------------------------------------------------- /core/tasks/README.dex_preopt_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/README.dex_preopt_check.md -------------------------------------------------------------------------------- /core/tasks/art-host-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/art-host-tests.mk -------------------------------------------------------------------------------- /core/tasks/art.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/art.mk -------------------------------------------------------------------------------- /core/tasks/automotive-general-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/automotive-general-tests.mk -------------------------------------------------------------------------------- /core/tasks/automotive-sdv-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/automotive-sdv-tests.mk -------------------------------------------------------------------------------- /core/tasks/automotive-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/automotive-tests.mk -------------------------------------------------------------------------------- /core/tasks/autorepro.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/autorepro.mk -------------------------------------------------------------------------------- /core/tasks/berberis_test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/berberis_test.mk -------------------------------------------------------------------------------- /core/tasks/build_custom_images.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/build_custom_images.mk -------------------------------------------------------------------------------- /core/tasks/catbox.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/catbox.mk -------------------------------------------------------------------------------- /core/tasks/check-abi-dump-list.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/check-abi-dump-list.mk -------------------------------------------------------------------------------- /core/tasks/csuite.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/csuite.mk -------------------------------------------------------------------------------- /core/tasks/cts-v-host.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/cts-v-host.mk -------------------------------------------------------------------------------- /core/tasks/cts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/cts.mk -------------------------------------------------------------------------------- /core/tasks/cts_root.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/cts_root.mk -------------------------------------------------------------------------------- /core/tasks/dex_preopt_check.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/dex_preopt_check.mk -------------------------------------------------------------------------------- /core/tasks/dts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/dts.mk -------------------------------------------------------------------------------- /core/tasks/find-shareduid-violation.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/find-shareduid-violation.mk -------------------------------------------------------------------------------- /core/tasks/fontchain_lint.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/fontchain_lint.mk -------------------------------------------------------------------------------- /core/tasks/general-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/general-tests.mk -------------------------------------------------------------------------------- /core/tasks/host-unit-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/host-unit-tests.mk -------------------------------------------------------------------------------- /core/tasks/host_init_verifier.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/host_init_verifier.mk -------------------------------------------------------------------------------- /core/tasks/mcts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/mcts.mk -------------------------------------------------------------------------------- /core/tasks/meta-lic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/meta-lic.mk -------------------------------------------------------------------------------- /core/tasks/module-info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/module-info.mk -------------------------------------------------------------------------------- /core/tasks/mts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/mts.mk -------------------------------------------------------------------------------- /core/tasks/oem_image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/oem_image.mk -------------------------------------------------------------------------------- /core/tasks/offline-sdk-docs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/offline-sdk-docs.mk -------------------------------------------------------------------------------- /core/tasks/owners.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/owners.mk -------------------------------------------------------------------------------- /core/tasks/platform_availability_check.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/platform_availability_check.mk -------------------------------------------------------------------------------- /core/tasks/prebuilt_tradefed.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/prebuilt_tradefed.mk -------------------------------------------------------------------------------- /core/tasks/sdk-addon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/sdk-addon.mk -------------------------------------------------------------------------------- /core/tasks/sts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/sts.mk -------------------------------------------------------------------------------- /core/tasks/tools/build_custom_image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/tools/build_custom_image.mk -------------------------------------------------------------------------------- /core/tasks/tools/compatibility.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/tools/compatibility.mk -------------------------------------------------------------------------------- /core/tasks/tools/package-modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/tools/package-modules.mk -------------------------------------------------------------------------------- /core/tasks/tradefed-tests-list.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/tradefed-tests-list.mk -------------------------------------------------------------------------------- /core/tasks/vendor_module_check.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/vendor_module_check.mk -------------------------------------------------------------------------------- /core/tasks/vts-core-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/vts-core-tests.mk -------------------------------------------------------------------------------- /core/tasks/with-license.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/with-license.mk -------------------------------------------------------------------------------- /core/tasks/wvts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/tasks/wvts.mk -------------------------------------------------------------------------------- /core/version_util.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/core/version_util.mk -------------------------------------------------------------------------------- /envsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/envsetup.sh -------------------------------------------------------------------------------- /help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/help.sh -------------------------------------------------------------------------------- /navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/navbar.md -------------------------------------------------------------------------------- /packaging/distdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/packaging/distdir.mk -------------------------------------------------------------------------------- /packaging/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/packaging/main.mk -------------------------------------------------------------------------------- /packaging/main_soong_only.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/packaging/main_soong_only.mk -------------------------------------------------------------------------------- /rbesetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/rbesetup.sh -------------------------------------------------------------------------------- /shell_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/shell_utils.sh -------------------------------------------------------------------------------- /tapasHelp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tapasHelp.sh -------------------------------------------------------------------------------- /target/board/BoardConfigGsiCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/BoardConfigGsiCommon.mk -------------------------------------------------------------------------------- /target/board/BoardConfigMainlineCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/BoardConfigMainlineCommon.mk -------------------------------------------------------------------------------- /target/board/BoardConfigPixelCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/BoardConfigPixelCommon.mk -------------------------------------------------------------------------------- /target/board/android-info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/android-info.mk -------------------------------------------------------------------------------- /target/board/generic/AndroidBoard.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | -------------------------------------------------------------------------------- /target/board/generic/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic/README.txt -------------------------------------------------------------------------------- /target/board/generic/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic/device.mk -------------------------------------------------------------------------------- /target/board/generic/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic_arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_arm64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic_arm64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_arm64/README.txt -------------------------------------------------------------------------------- /target/board/generic_arm64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_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/GrapheneOS/platform_build/HEAD/target/board/generic_arm64/sepolicy/file.te -------------------------------------------------------------------------------- /target/board/generic_arm64/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_arm64/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic_riscv64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_riscv64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic_riscv64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_riscv64/README.txt -------------------------------------------------------------------------------- /target/board/generic_riscv64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_riscv64/device.mk -------------------------------------------------------------------------------- /target/board/generic_riscv64/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_riscv64/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic_x86/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic_x86/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86/README.txt -------------------------------------------------------------------------------- /target/board/generic_x86/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86/device.mk -------------------------------------------------------------------------------- /target/board/generic_x86/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic_x86_64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86_64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic_x86_64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86_64/README.txt -------------------------------------------------------------------------------- /target/board/generic_x86_64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86_64/device.mk -------------------------------------------------------------------------------- /target/board/generic_x86_64/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86_64/system_ext.prop -------------------------------------------------------------------------------- /target/board/generic_x86_64_arm64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86_64_arm64/README.txt -------------------------------------------------------------------------------- /target/board/generic_x86_64_arm64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86_64_arm64/device.mk -------------------------------------------------------------------------------- /target/board/generic_x86_arm/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86_arm/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/generic_x86_arm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86_arm/README.txt -------------------------------------------------------------------------------- /target/board/generic_x86_arm/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86_arm/device.mk -------------------------------------------------------------------------------- /target/board/generic_x86_arm/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/generic_x86_arm/system_ext.prop -------------------------------------------------------------------------------- /target/board/go_defaults.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/go_defaults.prop -------------------------------------------------------------------------------- /target/board/go_defaults_512.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/go_defaults_512.prop -------------------------------------------------------------------------------- /target/board/go_defaults_common.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/go_defaults_common.prop -------------------------------------------------------------------------------- /target/board/gsi_arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/gsi_arm64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/gsi_system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/gsi_system_ext.prop -------------------------------------------------------------------------------- /target/board/gsi_system_ext_user.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/gsi_system_ext_user.prop -------------------------------------------------------------------------------- /target/board/linux_bionic/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/linux_bionic/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/linux_bionic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/linux_bionic/README.md -------------------------------------------------------------------------------- /target/board/mainline_arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/mainline_arm64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/mainline_arm64/sepolicy/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/system/sepolicy:/OWNERS 2 | -------------------------------------------------------------------------------- /target/board/mainline_sdk/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/mainline_sdk/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/mainline_sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/mainline_sdk/README.md -------------------------------------------------------------------------------- /target/board/mainline_x86/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/mainline_x86/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/mainline_x86_64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/mainline_x86_64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_arm/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_arm/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_arm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_arm/README.md -------------------------------------------------------------------------------- /target/board/module_arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_arm64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_arm64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_arm64/README.md -------------------------------------------------------------------------------- /target/board/module_arm64only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_arm64only/README.md -------------------------------------------------------------------------------- /target/board/module_riscv64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_riscv64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_riscv64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_riscv64/README.md -------------------------------------------------------------------------------- /target/board/module_x86/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_x86/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_x86/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_x86/README.md -------------------------------------------------------------------------------- /target/board/module_x86_64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_x86_64/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/module_x86_64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_x86_64/README.md -------------------------------------------------------------------------------- /target/board/module_x86_64only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/module_x86_64only/README.md -------------------------------------------------------------------------------- /target/board/ndk/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/ndk/BoardConfig.mk -------------------------------------------------------------------------------- /target/board/ndk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/board/ndk/README.md -------------------------------------------------------------------------------- /target/product/AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/AndroidProducts.mk -------------------------------------------------------------------------------- /target/product/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/OWNERS -------------------------------------------------------------------------------- /target/product/angle_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/angle_default.mk -------------------------------------------------------------------------------- /target/product/aosp_64bitonly_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_64bitonly_x86_64.mk -------------------------------------------------------------------------------- /target/product/aosp_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_arm.mk -------------------------------------------------------------------------------- /target/product/aosp_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_arm64.mk -------------------------------------------------------------------------------- /target/product/aosp_arm64_fullmte.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_arm64_fullmte.mk -------------------------------------------------------------------------------- /target/product/aosp_arm64_plus_armv7.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_arm64_plus_armv7.mk -------------------------------------------------------------------------------- /target/product/aosp_base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_base.mk -------------------------------------------------------------------------------- /target/product/aosp_base_telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_base_telephony.mk -------------------------------------------------------------------------------- /target/product/aosp_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_product.mk -------------------------------------------------------------------------------- /target/product/aosp_riscv64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_riscv64.mk -------------------------------------------------------------------------------- /target/product/aosp_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_x86.mk -------------------------------------------------------------------------------- /target/product/aosp_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_x86_64.mk -------------------------------------------------------------------------------- /target/product/aosp_x86_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/aosp_x86_arm.mk -------------------------------------------------------------------------------- /target/product/app_function_extensions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/app_function_extensions.mk -------------------------------------------------------------------------------- /target/product/base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/base.mk -------------------------------------------------------------------------------- /target/product/base_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/base_product.mk -------------------------------------------------------------------------------- /target/product/base_system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/base_system.mk -------------------------------------------------------------------------------- /target/product/base_system_ext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/base_system_ext.mk -------------------------------------------------------------------------------- /target/product/base_vendor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/base_vendor.mk -------------------------------------------------------------------------------- /target/product/build_variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/build_variables.mk -------------------------------------------------------------------------------- /target/product/cfi-common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/cfi-common.mk -------------------------------------------------------------------------------- /target/product/core_64_bit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/core_64_bit.mk -------------------------------------------------------------------------------- /target/product/core_64_bit_only.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/core_64_bit_only.mk -------------------------------------------------------------------------------- /target/product/core_minimal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/core_minimal.mk -------------------------------------------------------------------------------- /target/product/core_no_zygote.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/core_no_zygote.mk -------------------------------------------------------------------------------- /target/product/default_art_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/default_art_config.mk -------------------------------------------------------------------------------- /target/product/developer_gsi_keys.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_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/GrapheneOS/platform_build/HEAD/target/product/emulated_storage.mk -------------------------------------------------------------------------------- /target/product/full.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/full.manifest.xml -------------------------------------------------------------------------------- /target/product/full.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/full.mk -------------------------------------------------------------------------------- /target/product/full_base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/full_base.mk -------------------------------------------------------------------------------- /target/product/full_base_telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/full_base_telephony.mk -------------------------------------------------------------------------------- /target/product/full_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/full_x86.mk -------------------------------------------------------------------------------- /target/product/fullmte.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/fullmte.mk -------------------------------------------------------------------------------- /target/product/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/generic.mk -------------------------------------------------------------------------------- /target/product/generic/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/generic/Android.bp -------------------------------------------------------------------------------- /target/product/generic/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/generic/OWNERS -------------------------------------------------------------------------------- /target/product/generic/erofs_compress_hints.txt: -------------------------------------------------------------------------------- 1 | 0 .*\.apex$ -------------------------------------------------------------------------------- /target/product/generic_no_telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/generic_no_telephony.mk -------------------------------------------------------------------------------- /target/product/generic_ramdisk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/generic_ramdisk.mk -------------------------------------------------------------------------------- /target/product/generic_system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/generic_system.mk -------------------------------------------------------------------------------- /target/product/generic_system_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/generic_system_arm64.mk -------------------------------------------------------------------------------- /target/product/generic_system_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/generic_system_x86.mk -------------------------------------------------------------------------------- /target/product/generic_system_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/generic_system_x86_64.mk -------------------------------------------------------------------------------- /target/product/generic_system_x86_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/generic_system_x86_arm.mk -------------------------------------------------------------------------------- /target/product/generic_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/generic_x86.mk -------------------------------------------------------------------------------- /target/product/go_defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/go_defaults.mk -------------------------------------------------------------------------------- /target/product/go_defaults_512.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/go_defaults_512.mk -------------------------------------------------------------------------------- /target/product/go_defaults_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/go_defaults_common.mk -------------------------------------------------------------------------------- /target/product/gsi/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/28.txt -------------------------------------------------------------------------------- /target/product/gsi/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/29.txt -------------------------------------------------------------------------------- /target/product/gsi/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/30.txt -------------------------------------------------------------------------------- /target/product/gsi/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/31.txt -------------------------------------------------------------------------------- /target/product/gsi/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/32.txt -------------------------------------------------------------------------------- /target/product/gsi/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/33.txt -------------------------------------------------------------------------------- /target/product/gsi/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/34.txt -------------------------------------------------------------------------------- /target/product/gsi/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/Android.bp -------------------------------------------------------------------------------- /target/product/gsi/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/OWNERS -------------------------------------------------------------------------------- /target/product/gsi/current.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/current.txt -------------------------------------------------------------------------------- /target/product/gsi/gsi_skip_mount.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/gsi_skip_mount.cfg -------------------------------------------------------------------------------- /target/product/gsi/init.gsi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/init.gsi.rc -------------------------------------------------------------------------------- /target/product/gsi/init.vndk-nodef.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/init.vndk-nodef.rc -------------------------------------------------------------------------------- /target/product/gsi/testkey_rsa2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi/testkey_rsa2048.pem -------------------------------------------------------------------------------- /target/product/gsi_release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/gsi_release.mk -------------------------------------------------------------------------------- /target/product/handheld_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/handheld_product.mk -------------------------------------------------------------------------------- /target/product/handheld_system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/handheld_system.mk -------------------------------------------------------------------------------- /target/product/handheld_system_ext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/handheld_system_ext.mk -------------------------------------------------------------------------------- /target/product/handheld_vendor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/handheld_vendor.mk -------------------------------------------------------------------------------- /target/product/hsum_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/hsum_common.mk -------------------------------------------------------------------------------- /target/product/languages_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/languages_default.mk -------------------------------------------------------------------------------- /target/product/languages_full.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/languages_full.mk -------------------------------------------------------------------------------- /target/product/large_screen_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/large_screen_common.mk -------------------------------------------------------------------------------- /target/product/linux_bionic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/linux_bionic.mk -------------------------------------------------------------------------------- /target/product/mainline_sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_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/GrapheneOS/platform_build/HEAD/target/product/mainline_system_arm64.mk -------------------------------------------------------------------------------- /target/product/mainline_system_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/mainline_system_x86.mk -------------------------------------------------------------------------------- /target/product/mainline_system_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/mainline_system_x86_64.mk -------------------------------------------------------------------------------- /target/product/mainline_system_x86_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/mainline_system_x86_arm.mk -------------------------------------------------------------------------------- /target/product/media_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/media_product.mk -------------------------------------------------------------------------------- /target/product/media_system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/media_system.mk -------------------------------------------------------------------------------- /target/product/media_system_ext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/media_system_ext.mk -------------------------------------------------------------------------------- /target/product/media_vendor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/media_vendor.mk -------------------------------------------------------------------------------- /target/product/memtag-common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/memtag-common.mk -------------------------------------------------------------------------------- /target/product/module_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/module_arm.mk -------------------------------------------------------------------------------- /target/product/module_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/module_arm64.mk -------------------------------------------------------------------------------- /target/product/module_arm64only.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/module_arm64only.mk -------------------------------------------------------------------------------- /target/product/module_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/module_common.mk -------------------------------------------------------------------------------- /target/product/module_riscv64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/module_riscv64.mk -------------------------------------------------------------------------------- /target/product/module_x86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/module_x86.mk -------------------------------------------------------------------------------- /target/product/module_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/module_x86_64.mk -------------------------------------------------------------------------------- /target/product/module_x86_64only.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/module_x86_64only.mk -------------------------------------------------------------------------------- /target/product/ndk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/ndk.mk -------------------------------------------------------------------------------- /target/product/non_ab_device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/non_ab_device.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_k.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/product_launched_with_k.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_l.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/product_launched_with_l.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_m.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/product_launched_with_m.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_n.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/product_launched_with_n.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_o.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/product_launched_with_o.mk -------------------------------------------------------------------------------- /target/product/product_launched_with_p.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/product_launched_with_p.mk -------------------------------------------------------------------------------- /target/product/profile_boot_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/profile_boot_common.mk -------------------------------------------------------------------------------- /target/product/ramdisk_stub.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/ramdisk_stub.mk -------------------------------------------------------------------------------- /target/product/runtime_libart.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/runtime_libart.mk -------------------------------------------------------------------------------- /target/product/sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/sdk.mk -------------------------------------------------------------------------------- /target/product/sdk_with_runtime_apis.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/sdk_with_runtime_apis.mk -------------------------------------------------------------------------------- /target/product/security/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/Android.bp -------------------------------------------------------------------------------- /target/product/security/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/README -------------------------------------------------------------------------------- /target/product/security/bluetooth.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/bluetooth.pk8 -------------------------------------------------------------------------------- /target/product/security/bluetooth.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/bluetooth.x509.pem -------------------------------------------------------------------------------- /target/product/security/cts_uicc_2021.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/cts_uicc_2021.pk8 -------------------------------------------------------------------------------- /target/product/security/gmscompat_lib.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/gmscompat_lib.pk8 -------------------------------------------------------------------------------- /target/product/security/media.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/media.pk8 -------------------------------------------------------------------------------- /target/product/security/media.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/media.x509.pem -------------------------------------------------------------------------------- /target/product/security/networkstack.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/networkstack.pk8 -------------------------------------------------------------------------------- /target/product/security/nfc.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/nfc.pk8 -------------------------------------------------------------------------------- /target/product/security/nfc.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/nfc.x509.pem -------------------------------------------------------------------------------- /target/product/security/platform.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/platform.pk8 -------------------------------------------------------------------------------- /target/product/security/platform.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/platform.x509.pem -------------------------------------------------------------------------------- /target/product/security/sdk_sandbox.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/sdk_sandbox.pk8 -------------------------------------------------------------------------------- /target/product/security/shared.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/shared.pk8 -------------------------------------------------------------------------------- /target/product/security/shared.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/shared.x509.pem -------------------------------------------------------------------------------- /target/product/security/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/testkey.pk8 -------------------------------------------------------------------------------- /target/product/security/testkey.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/security/testkey.x509.pem -------------------------------------------------------------------------------- /target/product/sysconfig/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/sysconfig/Android.bp -------------------------------------------------------------------------------- /target/product/telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/telephony.mk -------------------------------------------------------------------------------- /target/product/telephony_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/telephony_product.mk -------------------------------------------------------------------------------- /target/product/telephony_system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/telephony_system.mk -------------------------------------------------------------------------------- /target/product/telephony_system_ext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/telephony_system_ext.mk -------------------------------------------------------------------------------- /target/product/telephony_vendor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/telephony_vendor.mk -------------------------------------------------------------------------------- /target/product/updatable_apex.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/updatable_apex.mk -------------------------------------------------------------------------------- /target/product/userspace_reboot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/userspace_reboot.mk -------------------------------------------------------------------------------- /target/product/virtual_ab_ota.mk: -------------------------------------------------------------------------------- 1 | virtual_ab_ota/launch.mk -------------------------------------------------------------------------------- /target/product/virtual_ab_ota/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/virtual_ab_ota/OWNERS -------------------------------------------------------------------------------- /target/product/virtual_ab_ota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/virtual_ab_ota/README.md -------------------------------------------------------------------------------- /target/product/virtual_ab_ota/launch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/virtual_ab_ota/launch.mk -------------------------------------------------------------------------------- /target/product/virtual_ab_ota_plus_non_ab.mk: -------------------------------------------------------------------------------- 1 | virtual_ab_ota/plus_non_ab.mk -------------------------------------------------------------------------------- /target/product/window_extensions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/window_extensions.mk -------------------------------------------------------------------------------- /target/product/window_extensions_base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/target/product/window_extensions_base.mk -------------------------------------------------------------------------------- /teams/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/teams/Android.bp -------------------------------------------------------------------------------- /teams/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/teams/OWNERS -------------------------------------------------------------------------------- /tests/artifact_path_requirements/test.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/artifact_path_requirements/test.rbc -------------------------------------------------------------------------------- /tests/b_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/b_tests.sh -------------------------------------------------------------------------------- /tests/board.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/board.rbc -------------------------------------------------------------------------------- /tests/board_input_vars.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/board_input_vars.rbc -------------------------------------------------------------------------------- /tests/conversion_error.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/conversion_error.rbc -------------------------------------------------------------------------------- /tests/envsetup_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/envsetup_tests.sh -------------------------------------------------------------------------------- /tests/include1.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/include1.rbc -------------------------------------------------------------------------------- /tests/input_variables.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/input_variables.rbc -------------------------------------------------------------------------------- /tests/lunch_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/lunch_tests.sh -------------------------------------------------------------------------------- /tests/part1.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/part1.rbc -------------------------------------------------------------------------------- /tests/prefixed_sort_order/base.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/prefixed_sort_order/base.rbc -------------------------------------------------------------------------------- /tests/prefixed_sort_order/product.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/prefixed_sort_order/product.rbc -------------------------------------------------------------------------------- /tests/prefixed_sort_order/test.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/prefixed_sort_order/test.rbc -------------------------------------------------------------------------------- /tests/product.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/product.rbc -------------------------------------------------------------------------------- /tests/roboleaf_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/roboleaf_tests.sh -------------------------------------------------------------------------------- /tests/run.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/run.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance/inherit1.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/single_value_inheritance/inherit1.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance/inherit2.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/single_value_inheritance/inherit2.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance/product.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/single_value_inheritance/product.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance/test.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/single_value_inheritance/test.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance_2/a.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/single_value_inheritance_2/a.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance_2/b.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/single_value_inheritance_2/b.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance_2/c.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/single_value_inheritance_2/c.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance_2/d.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/single_value_inheritance_2/d.rbc -------------------------------------------------------------------------------- /tests/single_value_inheritance_2/test.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/single_value_inheritance_2/test.rbc -------------------------------------------------------------------------------- /tests/version_defaults.rbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tests/version_defaults.rbc -------------------------------------------------------------------------------- /tools/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/Android.bp -------------------------------------------------------------------------------- /tools/aconfig/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/.editorconfig -------------------------------------------------------------------------------- /tools/aconfig/.gitignore: -------------------------------------------------------------------------------- 1 | /Cargo.lock 2 | /target 3 | -------------------------------------------------------------------------------- /tools/aconfig/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/Cargo.toml -------------------------------------------------------------------------------- /tools/aconfig/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/aconfig/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/OWNERS -------------------------------------------------------------------------------- /tools/aconfig/PREUPLOAD.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/PREUPLOAD.cfg -------------------------------------------------------------------------------- /tools/aconfig/TEST_MAPPING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/TEST_MAPPING -------------------------------------------------------------------------------- /tools/aconfig/aconfig/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/Android.bp -------------------------------------------------------------------------------- /tools/aconfig/aconfig/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/Cargo.toml -------------------------------------------------------------------------------- /tools/aconfig/aconfig/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/build.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig/src/cli_parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/src/cli_parser.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig/src/codegen/cpp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/src/codegen/cpp.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig/src/codegen/java.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/src/codegen/java.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig/src/codegen/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/src/codegen/mod.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig/src/codegen/rust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/src/codegen/rust.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig/src/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/src/commands.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig/src/dump.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/src/dump.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/src/main.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig/src/storage/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/src/storage/mod.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/src/test.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig/tests/first.values: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/tests/first.values -------------------------------------------------------------------------------- /tools/aconfig/aconfig/tests/second.values: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/tests/second.values -------------------------------------------------------------------------------- /tools/aconfig/aconfig/tests/test.aconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/tests/test.aconfig -------------------------------------------------------------------------------- /tools/aconfig/aconfig/tests/third.values: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig/tests/third.values -------------------------------------------------------------------------------- /tools/aconfig/aconfig_flags/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig_flags/Android.bp -------------------------------------------------------------------------------- /tools/aconfig/aconfig_flags/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig_flags/Cargo.toml -------------------------------------------------------------------------------- /tools/aconfig/aconfig_flags/flags.aconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig_flags/flags.aconfig -------------------------------------------------------------------------------- /tools/aconfig/aconfig_flags/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig_flags/src/lib.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig_protos/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig_protos/Android.bp -------------------------------------------------------------------------------- /tools/aconfig/aconfig_protos/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig_protos/Cargo.toml -------------------------------------------------------------------------------- /tools/aconfig/aconfig_protos/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig_protos/build.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig_protos/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig_protos/src/lib.rs -------------------------------------------------------------------------------- /tools/aconfig/aconfig_storage_file/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aconfig_storage_file/build.rs -------------------------------------------------------------------------------- /tools/aconfig/aflags/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aflags/Android.bp -------------------------------------------------------------------------------- /tools/aconfig/aflags/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aflags/Cargo.toml -------------------------------------------------------------------------------- /tools/aconfig/aflags/src/load_protos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aflags/src/load_protos.rs -------------------------------------------------------------------------------- /tools/aconfig/aflags/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/aflags/src/main.rs -------------------------------------------------------------------------------- /tools/aconfig/fake_device_config/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/aconfig/fake_device_config/Android.bp -------------------------------------------------------------------------------- /tools/aconfig/rustfmt.toml: -------------------------------------------------------------------------------- 1 | ../../../soong/scripts/rustfmt.toml -------------------------------------------------------------------------------- /tools/acp/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/acp/Android.bp -------------------------------------------------------------------------------- /tools/acp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/acp/README -------------------------------------------------------------------------------- /tools/acp/acp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/acp/acp.c -------------------------------------------------------------------------------- /tools/apicheck/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/apicheck/Android.bp -------------------------------------------------------------------------------- /tools/apicheck/etc/apicheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/apicheck/etc/apicheck -------------------------------------------------------------------------------- /tools/atree/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/atree/Android.bp -------------------------------------------------------------------------------- /tools/atree/atree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/atree/atree.cpp -------------------------------------------------------------------------------- /tools/atree/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/atree/files.cpp -------------------------------------------------------------------------------- /tools/atree/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/atree/files.h -------------------------------------------------------------------------------- /tools/atree/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/atree/fs.cpp -------------------------------------------------------------------------------- /tools/atree/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/atree/fs.h -------------------------------------------------------------------------------- /tools/atree/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/atree/options.h -------------------------------------------------------------------------------- /tools/auto_gen_test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/auto_gen_test_config.py -------------------------------------------------------------------------------- /tools/auto_gen_test_config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/auto_gen_test_config_test.py -------------------------------------------------------------------------------- /tools/brillo-clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/brillo-clang-format -------------------------------------------------------------------------------- /tools/build-runfiles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/build-runfiles.cc -------------------------------------------------------------------------------- /tools/canoninja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/canoninja/README.md -------------------------------------------------------------------------------- /tools/canoninja/canoninja.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/canoninja/canoninja.go -------------------------------------------------------------------------------- /tools/canoninja/canoninja_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/canoninja/canoninja_test.go -------------------------------------------------------------------------------- /tools/canoninja/cmd/canoninja.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/canoninja/cmd/canoninja.go -------------------------------------------------------------------------------- /tools/canoninja/go.mod: -------------------------------------------------------------------------------- 1 | module canoninja 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /tools/characteristics_rro_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/characteristics_rro_generator.py -------------------------------------------------------------------------------- /tools/check-flagged-apis/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/check-flagged-apis/Android.bp -------------------------------------------------------------------------------- /tools/check-flagged-apis/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/check-flagged-apis/OWNERS -------------------------------------------------------------------------------- /tools/check_elf_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/check_elf_file.py -------------------------------------------------------------------------------- /tools/check_identical_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/check_identical_lib.sh -------------------------------------------------------------------------------- /tools/check_radio_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/check_radio_versions.py -------------------------------------------------------------------------------- /tools/compare_builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compare_builds.py -------------------------------------------------------------------------------- /tools/compliance/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/Android.bp -------------------------------------------------------------------------------- /tools/compliance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/README.md -------------------------------------------------------------------------------- /tools/compliance/cmd/dumpgraph/dumpgraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/cmd/dumpgraph/dumpgraph.go -------------------------------------------------------------------------------- /tools/compliance/cmd/listshare/listshare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/cmd/listshare/listshare.go -------------------------------------------------------------------------------- /tools/compliance/cmd/rtrace/rtrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/cmd/rtrace/rtrace.go -------------------------------------------------------------------------------- /tools/compliance/cmd/rtrace/rtrace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/cmd/rtrace/rtrace_test.go -------------------------------------------------------------------------------- /tools/compliance/cmd/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_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/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/xmlnotice/xmlnotice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/cmd/xmlnotice/xmlnotice.go -------------------------------------------------------------------------------- /tools/compliance/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/condition.go -------------------------------------------------------------------------------- /tools/compliance/condition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/condition_test.go -------------------------------------------------------------------------------- /tools/compliance/conditionset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/conditionset.go -------------------------------------------------------------------------------- /tools/compliance/conditionset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/conditionset_test.go -------------------------------------------------------------------------------- /tools/compliance/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/doc.go -------------------------------------------------------------------------------- /tools/compliance/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/go.mod -------------------------------------------------------------------------------- /tools/compliance/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/go.work -------------------------------------------------------------------------------- /tools/compliance/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/graph.go -------------------------------------------------------------------------------- /tools/compliance/noticeindex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/noticeindex.go -------------------------------------------------------------------------------- /tools/compliance/policy_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/policy_policy.go -------------------------------------------------------------------------------- /tools/compliance/policy_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/policy_policy_test.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/policy_resolve.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/policy_resolve_test.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolvenotices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/policy_resolvenotices.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolveprivacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/policy_resolveprivacy.go -------------------------------------------------------------------------------- /tools/compliance/policy_resolveshare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/policy_resolveshare.go -------------------------------------------------------------------------------- /tools/compliance/policy_shipped.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/policy_shipped.go -------------------------------------------------------------------------------- /tools/compliance/policy_shipped_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/policy_shipped_test.go -------------------------------------------------------------------------------- /tools/compliance/policy_walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/policy_walk.go -------------------------------------------------------------------------------- /tools/compliance/policy_walk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/policy_walk_test.go -------------------------------------------------------------------------------- /tools/compliance/projectmetadata/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/projectmetadata/Android.bp -------------------------------------------------------------------------------- /tools/compliance/readgraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/readgraph.go -------------------------------------------------------------------------------- /tools/compliance/readgraph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/readgraph_test.go -------------------------------------------------------------------------------- /tools/compliance/resolution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/resolution.go -------------------------------------------------------------------------------- /tools/compliance/resolutionset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/resolutionset.go -------------------------------------------------------------------------------- /tools/compliance/resolutionset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/resolutionset_test.go -------------------------------------------------------------------------------- /tools/compliance/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/test_util.go -------------------------------------------------------------------------------- /tools/compliance/testfs/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/testfs/Android.bp -------------------------------------------------------------------------------- /tools/compliance/testfs/testfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/compliance/testfs/testfs.go -------------------------------------------------------------------------------- /tools/dependency_mapper/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/dependency_mapper/Android.bp -------------------------------------------------------------------------------- /tools/dependency_mapper/OWNERS: -------------------------------------------------------------------------------- 1 | himanshuz@google.com -------------------------------------------------------------------------------- /tools/dependency_mapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/dependency_mapper/README.md -------------------------------------------------------------------------------- /tools/dependency_mapper/proto/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/dependency_mapper/proto/Android.bp -------------------------------------------------------------------------------- /tools/dependency_mapper/proto/go.mod: -------------------------------------------------------------------------------- 1 | module go.dependencymapper/protoimpl 2 | 3 | go 1.23 4 | -------------------------------------------------------------------------------- /tools/dependency_mapper/proto/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/dependency_mapper/proto/regen.sh -------------------------------------------------------------------------------- /tools/docker/.gitignore: -------------------------------------------------------------------------------- 1 | gitconfig 2 | -------------------------------------------------------------------------------- /tools/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/docker/Dockerfile -------------------------------------------------------------------------------- /tools/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/docker/README.md -------------------------------------------------------------------------------- /tools/droiddoc/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/droiddoc/Android.bp -------------------------------------------------------------------------------- /tools/droiddoc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/droiddoc/LICENSE -------------------------------------------------------------------------------- /tools/droiddoc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/droiddoc/README -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/data.hdf: -------------------------------------------------------------------------------- 1 | template { 2 | which = normal 3 | } 4 | 5 | -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/docpage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/droiddoc/templates-pdk/docpage.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/footer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/droiddoc/templates-pdk/footer.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/head_tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/droiddoc/templates-pdk/head_tag.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/header_tabs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_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/GrapheneOS/platform_build/HEAD/tools/droiddoc/templates-pdk/sampleindex.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/sdkpage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/droiddoc/templates-pdk/sdkpage.cs -------------------------------------------------------------------------------- /tools/droiddoc/templates-pdk/trailer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/droiddoc/templates-pdk/trailer.cs -------------------------------------------------------------------------------- /tools/droiddoc/test/stubs/func.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/droiddoc/test/stubs/func.sh -------------------------------------------------------------------------------- /tools/droiddoc/test/stubs/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/droiddoc/test/stubs/run.sh -------------------------------------------------------------------------------- /tools/edit_monitor/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/edit_monitor/Android.bp -------------------------------------------------------------------------------- /tools/edit_monitor/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/tools/asuite:/OWNERS_ADTE_TEAM -------------------------------------------------------------------------------- /tools/edit_monitor/daemon_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/edit_monitor/daemon_manager.py -------------------------------------------------------------------------------- /tools/edit_monitor/daemon_manager_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/edit_monitor/daemon_manager_test.py -------------------------------------------------------------------------------- /tools/edit_monitor/edit_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/edit_monitor/edit_monitor.py -------------------------------------------------------------------------------- /tools/edit_monitor/edit_monitor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/edit_monitor/edit_monitor_test.py -------------------------------------------------------------------------------- /tools/edit_monitor/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/edit_monitor/main.py -------------------------------------------------------------------------------- /tools/edit_monitor/proto/edit_event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/edit_monitor/proto/edit_event.proto -------------------------------------------------------------------------------- /tools/edit_monitor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/edit_monitor/utils.py -------------------------------------------------------------------------------- /tools/edit_monitor/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/edit_monitor/utils_test.py -------------------------------------------------------------------------------- /tools/envsetup/run_envsetup_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/envsetup/run_envsetup_tests -------------------------------------------------------------------------------- /tools/envsetup/spam_for_lunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/envsetup/spam_for_lunch -------------------------------------------------------------------------------- /tools/event_log_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/event_log_tags.py -------------------------------------------------------------------------------- /tools/exercise_compare_builds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/exercise_compare_builds -------------------------------------------------------------------------------- /tools/extract_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/extract_kernel.py -------------------------------------------------------------------------------- /tools/fat16copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/fat16copy.py -------------------------------------------------------------------------------- /tools/filelistdiff/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/filelistdiff/Android.bp -------------------------------------------------------------------------------- /tools/filelistdiff/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/filelistdiff/OWNERS -------------------------------------------------------------------------------- /tools/filelistdiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/filelistdiff/README.md -------------------------------------------------------------------------------- /tools/filelistdiff/allowlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/filelistdiff/allowlist -------------------------------------------------------------------------------- /tools/filelistdiff/allowlist_next: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/filelistdiff/allowlist_next -------------------------------------------------------------------------------- /tools/filelistdiff/file_list_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/filelistdiff/file_list_diff.py -------------------------------------------------------------------------------- /tools/fileslist_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/fileslist_util.py -------------------------------------------------------------------------------- /tools/finalization/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/OWNERS -------------------------------------------------------------------------------- /tools/finalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/README.md -------------------------------------------------------------------------------- /tools/finalization/build-step-0-and-m.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/build-step-0-and-m.sh -------------------------------------------------------------------------------- /tools/finalization/build-step-0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/build-step-0.sh -------------------------------------------------------------------------------- /tools/finalization/build-step-1-and-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/build-step-1-and-2.sh -------------------------------------------------------------------------------- /tools/finalization/build-step-1-and-m.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/build-step-1-and-m.sh -------------------------------------------------------------------------------- /tools/finalization/build-step-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/build-step-1.sh -------------------------------------------------------------------------------- /tools/finalization/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/cleanup.sh -------------------------------------------------------------------------------- /tools/finalization/command-line-options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/command-line-options.sh -------------------------------------------------------------------------------- /tools/finalization/dryrun-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/dryrun-cleanup.sh -------------------------------------------------------------------------------- /tools/finalization/dryrun-step-1-and-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/dryrun-step-1-and-2.sh -------------------------------------------------------------------------------- /tools/finalization/dryrun-step-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/dryrun-step-1.sh -------------------------------------------------------------------------------- /tools/finalization/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/environment.sh -------------------------------------------------------------------------------- /tools/finalization/finalize-sdk-rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/finalize-sdk-rel.sh -------------------------------------------------------------------------------- /tools/finalization/localonly-steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/localonly-steps.sh -------------------------------------------------------------------------------- /tools/finalization/step-0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/step-0.sh -------------------------------------------------------------------------------- /tools/finalization/step-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/step-1.sh -------------------------------------------------------------------------------- /tools/finalization/step-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/finalization/step-2.sh -------------------------------------------------------------------------------- /tools/find_static_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/find_static_candidates.py -------------------------------------------------------------------------------- /tools/findleaves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/findleaves.py -------------------------------------------------------------------------------- /tools/fixlinebreaks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/fixlinebreaks.sh -------------------------------------------------------------------------------- /tools/fs_config/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/fs_config/Android.bp -------------------------------------------------------------------------------- /tools/fs_config/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/system/core:/janitors/OWNERS 2 | -------------------------------------------------------------------------------- /tools/fs_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/fs_config/README.md -------------------------------------------------------------------------------- /tools/fs_config/end_to_end_test/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_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/GrapheneOS/platform_build/HEAD/tools/fs_config/end_to_end_test/run_test.sh -------------------------------------------------------------------------------- /tools/fs_config/fs_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/fs_config/fs_config.c -------------------------------------------------------------------------------- /tools/fs_config/fs_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/fs_config/fs_config.go -------------------------------------------------------------------------------- /tools/fs_config/fs_config_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/fs_config/fs_config_generator.py -------------------------------------------------------------------------------- /tools/fs_config/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/fs_config/pylintrc -------------------------------------------------------------------------------- /tools/fs_config/test_fs_config_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/fs_config/test_fs_config_generator.py -------------------------------------------------------------------------------- /tools/generate-notice-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/generate-notice-files.py -------------------------------------------------------------------------------- /tools/generate-self-extracting-archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/generate-self-extracting-archive.py -------------------------------------------------------------------------------- /tools/generate_gts_shared_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/generate_gts_shared_report.py -------------------------------------------------------------------------------- /tools/ide_query/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/OWNERS -------------------------------------------------------------------------------- /tools/ide_query/cc_analyzer/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/cc_analyzer/Android.bp -------------------------------------------------------------------------------- /tools/ide_query/cc_analyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/cc_analyzer/README.md -------------------------------------------------------------------------------- /tools/ide_query/cc_analyzer/analyzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/cc_analyzer/analyzer.cc -------------------------------------------------------------------------------- /tools/ide_query/cc_analyzer/analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/cc_analyzer/analyzer.h -------------------------------------------------------------------------------- /tools/ide_query/cc_analyzer/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/cc_analyzer/main.cc -------------------------------------------------------------------------------- /tools/ide_query/cc_analyzer_proto/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/cc_analyzer_proto/regen.sh -------------------------------------------------------------------------------- /tools/ide_query/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/go.mod -------------------------------------------------------------------------------- /tools/ide_query/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/go.work -------------------------------------------------------------------------------- /tools/ide_query/go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/go.work.sum -------------------------------------------------------------------------------- /tools/ide_query/ide_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/ide_query.go -------------------------------------------------------------------------------- /tools/ide_query/ide_query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/ide_query.sh -------------------------------------------------------------------------------- /tools/ide_query/ide_query_proto/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/ide_query_proto/regen.sh -------------------------------------------------------------------------------- /tools/ide_query/prober_scripts/jvm/Bar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/prober_scripts/jvm/Bar.java -------------------------------------------------------------------------------- /tools/ide_query/prober_scripts/jvm/Foo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/prober_scripts/jvm/Foo.java -------------------------------------------------------------------------------- /tools/ide_query/prober_scripts/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ide_query/prober_scripts/regen.sh -------------------------------------------------------------------------------- /tools/java-event-log-tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/java-event-log-tags.py -------------------------------------------------------------------------------- /tools/libhost/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/libhost/Android.bp -------------------------------------------------------------------------------- /tools/libhost/CopyFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/libhost/CopyFile.c -------------------------------------------------------------------------------- /tools/libhost/include/host/CopyFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/libhost/include/host/CopyFile.h -------------------------------------------------------------------------------- /tools/list_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/list_files.py -------------------------------------------------------------------------------- /tools/lunchable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/lunchable -------------------------------------------------------------------------------- /tools/merge-event-log-tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/merge-event-log-tags.py -------------------------------------------------------------------------------- /tools/missing_soong_module_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/missing_soong_module_info.py -------------------------------------------------------------------------------- /tools/mk2bp_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/mk2bp_catalog.py -------------------------------------------------------------------------------- /tools/mk2bp_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/mk2bp_partition.py -------------------------------------------------------------------------------- /tools/normalize_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/normalize_path.py -------------------------------------------------------------------------------- /tools/otatools_package/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/otatools_package/Android.bp -------------------------------------------------------------------------------- /tools/perf/benchmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/perf/benchmarks -------------------------------------------------------------------------------- /tools/perf/format_benchmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/perf/format_benchmarks -------------------------------------------------------------------------------- /tools/perf/pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/perf/pretty.py -------------------------------------------------------------------------------- /tools/perf/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/perf/utils.py -------------------------------------------------------------------------------- /tools/post_process_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/post_process_props.py -------------------------------------------------------------------------------- /tools/post_process_props_unittest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/post_process_props_unittest.xml -------------------------------------------------------------------------------- /tools/print_module_licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/print_module_licenses.sh -------------------------------------------------------------------------------- /tools/product_config/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_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/inherit_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/product_config/inherit_tree.py -------------------------------------------------------------------------------- /tools/product_config/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/product_config/test.sh -------------------------------------------------------------------------------- /tools/protos/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/protos/Android.bp -------------------------------------------------------------------------------- /tools/protos/metadata_file.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/protos/metadata_file.proto -------------------------------------------------------------------------------- /tools/rbcrun/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/Android.bp -------------------------------------------------------------------------------- /tools/rbcrun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/README.md -------------------------------------------------------------------------------- /tools/rbcrun/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/go.mod -------------------------------------------------------------------------------- /tools/rbcrun/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/go.sum -------------------------------------------------------------------------------- /tools/rbcrun/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/host.go -------------------------------------------------------------------------------- /tools/rbcrun/host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/host_test.go -------------------------------------------------------------------------------- /tools/rbcrun/rbcrun/rbcrun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/rbcrun/rbcrun.go -------------------------------------------------------------------------------- /tools/rbcrun/testdata/bzl_loads_scl.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/testdata/bzl_loads_scl.bzl -------------------------------------------------------------------------------- /tools/rbcrun/testdata/bzl_loads_scl_2.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/testdata/bzl_loads_scl_2.bzl -------------------------------------------------------------------------------- /tools/rbcrun/testdata/file_ops.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/testdata/file_ops.star -------------------------------------------------------------------------------- /tools/rbcrun/testdata/load.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/testdata/load.star -------------------------------------------------------------------------------- /tools/rbcrun/testdata/module1.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/testdata/module1.star -------------------------------------------------------------------------------- /tools/rbcrun/testdata/module2.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/testdata/module2.star -------------------------------------------------------------------------------- /tools/rbcrun/testdata/shell.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/rbcrun/testdata/shell.star -------------------------------------------------------------------------------- /tools/rbcrun/testdata/test_scl.scl: -------------------------------------------------------------------------------- 1 | 2 | foo = "bar" 3 | -------------------------------------------------------------------------------- /tools/rbcrun/testdata/test_scl_symlink.scl: -------------------------------------------------------------------------------- 1 | test_scl.scl -------------------------------------------------------------------------------- /tools/record-finalized-flags/.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target/ 3 | -------------------------------------------------------------------------------- /tools/record-finalized-flags/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/record-finalized-flags/Android.bp -------------------------------------------------------------------------------- /tools/record-finalized-flags/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/record-finalized-flags/Cargo.toml -------------------------------------------------------------------------------- /tools/record-finalized-flags/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/frameworks/base:/SDK_OWNERS 2 | -------------------------------------------------------------------------------- /tools/record-finalized-flags/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/record-finalized-flags/src/main.rs -------------------------------------------------------------------------------- /tools/releasetools/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/Android.bp -------------------------------------------------------------------------------- /tools/releasetools/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/OWNERS -------------------------------------------------------------------------------- /tools/releasetools/apex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/apex_utils.py -------------------------------------------------------------------------------- /tools/releasetools/blockimgdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/blockimgdiff.py -------------------------------------------------------------------------------- /tools/releasetools/build_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/build_image.py -------------------------------------------------------------------------------- /tools/releasetools/build_super_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/build_super_image.py -------------------------------------------------------------------------------- /tools/releasetools/care_map_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/care_map_pb2.py -------------------------------------------------------------------------------- /tools/releasetools/check_partition_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/check_partition_sizes.py -------------------------------------------------------------------------------- /tools/releasetools/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/common.py -------------------------------------------------------------------------------- /tools/releasetools/create_brick_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/create_brick_ota.py -------------------------------------------------------------------------------- /tools/releasetools/edify_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/edify_generator.py -------------------------------------------------------------------------------- /tools/releasetools/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/images.py -------------------------------------------------------------------------------- /tools/releasetools/img_from_target_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/img_from_target_files.py -------------------------------------------------------------------------------- /tools/releasetools/jarjar-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/jarjar-rules.txt -------------------------------------------------------------------------------- /tools/releasetools/make_recovery_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/make_recovery_patch.py -------------------------------------------------------------------------------- /tools/releasetools/merge/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/merge/Android.bp -------------------------------------------------------------------------------- /tools/releasetools/merge/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/merge/OWNERS -------------------------------------------------------------------------------- /tools/releasetools/merge/merge_builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/merge/merge_builds.py -------------------------------------------------------------------------------- /tools/releasetools/merge/merge_dexopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/merge/merge_dexopt.py -------------------------------------------------------------------------------- /tools/releasetools/merge/merge_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/merge/merge_meta.py -------------------------------------------------------------------------------- /tools/releasetools/merge/merge_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/merge/merge_utils.py -------------------------------------------------------------------------------- /tools/releasetools/merge/test_merge_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/merge/test_merge_meta.py -------------------------------------------------------------------------------- /tools/releasetools/merge_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/merge_ota.py -------------------------------------------------------------------------------- /tools/releasetools/non_ab_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/non_ab_ota.py -------------------------------------------------------------------------------- /tools/releasetools/ota_from_raw_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/ota_from_raw_img.py -------------------------------------------------------------------------------- /tools/releasetools/ota_from_target_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/ota_from_target_files.py -------------------------------------------------------------------------------- /tools/releasetools/ota_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/ota_metadata.proto -------------------------------------------------------------------------------- /tools/releasetools/ota_metadata_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/ota_metadata_pb2.py -------------------------------------------------------------------------------- /tools/releasetools/ota_package_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/ota_package_parser.py -------------------------------------------------------------------------------- /tools/releasetools/ota_signing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/ota_signing_utils.py -------------------------------------------------------------------------------- /tools/releasetools/ota_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/ota_utils.py -------------------------------------------------------------------------------- /tools/releasetools/payload_signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/payload_signer.py -------------------------------------------------------------------------------- /tools/releasetools/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/pylintrc -------------------------------------------------------------------------------- /tools/releasetools/rangelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/rangelib.py -------------------------------------------------------------------------------- /tools/releasetools/sign_apex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/sign_apex.py -------------------------------------------------------------------------------- /tools/releasetools/sparse_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/sparse_img.py -------------------------------------------------------------------------------- /tools/releasetools/target_files_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/target_files_diff.py -------------------------------------------------------------------------------- /tools/releasetools/test_apex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/test_apex_utils.py -------------------------------------------------------------------------------- /tools/releasetools/test_blockimgdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/test_blockimgdiff.py -------------------------------------------------------------------------------- /tools/releasetools/test_build_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/test_build_image.py -------------------------------------------------------------------------------- /tools/releasetools/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/test_common.py -------------------------------------------------------------------------------- /tools/releasetools/test_merge_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/test_merge_ota.py -------------------------------------------------------------------------------- /tools/releasetools/test_non_ab_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/test_non_ab_ota.py -------------------------------------------------------------------------------- /tools/releasetools/test_ota_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/test_ota_utils.py -------------------------------------------------------------------------------- /tools/releasetools/test_rangelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/test_rangelib.py -------------------------------------------------------------------------------- /tools/releasetools/test_sign_apex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/test_sign_apex.py -------------------------------------------------------------------------------- /tools/releasetools/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/test_utils.py -------------------------------------------------------------------------------- /tools/releasetools/test_verity_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/test_verity_utils.py -------------------------------------------------------------------------------- /tools/releasetools/testdata/TestApp.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/testdata/TestApp.apk -------------------------------------------------------------------------------- /tools/releasetools/testdata/foo.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/testdata/foo.apex -------------------------------------------------------------------------------- /tools/releasetools/testdata/has_apk.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/testdata/has_apk.apex -------------------------------------------------------------------------------- /tools/releasetools/testdata/media.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/testdata/media.x509.pem -------------------------------------------------------------------------------- /tools/releasetools/testdata/sigfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/testdata/sigfile.bin -------------------------------------------------------------------------------- /tools/releasetools/testdata/testkey.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/testdata/testkey.key -------------------------------------------------------------------------------- /tools/releasetools/testdata/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/testdata/testkey.pk8 -------------------------------------------------------------------------------- /tools/releasetools/testdata/testkey_EC.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/testdata/testkey_EC.key -------------------------------------------------------------------------------- /tools/releasetools/testdata/tuna_vbmeta.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/testdata/tuna_vbmeta.zip -------------------------------------------------------------------------------- /tools/releasetools/testdata/verity.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/testdata/verity.x509.pem -------------------------------------------------------------------------------- /tools/releasetools/testdata/verity_mincrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/testdata/verity_mincrypt -------------------------------------------------------------------------------- /tools/releasetools/validate_target_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/validate_target_files.py -------------------------------------------------------------------------------- /tools/releasetools/verity_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/releasetools/verity_utils.py -------------------------------------------------------------------------------- /tools/sbom/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/sbom/Android.bp -------------------------------------------------------------------------------- /tools/sbom/compliance_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/sbom/compliance_metadata.py -------------------------------------------------------------------------------- /tools/sbom/gen_notice_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/sbom/gen_notice_xml.py -------------------------------------------------------------------------------- /tools/sbom/gen_sbom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/sbom/gen_sbom.py -------------------------------------------------------------------------------- /tools/sbom/generate-sbom-framework_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/sbom/generate-sbom-framework_res.py -------------------------------------------------------------------------------- /tools/sbom/generate-sbom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/sbom/generate-sbom.py -------------------------------------------------------------------------------- /tools/sbom/sbom_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/sbom/sbom_data.py -------------------------------------------------------------------------------- /tools/sbom/sbom_data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/sbom/sbom_data_test.py -------------------------------------------------------------------------------- /tools/sbom/sbom_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/sbom/sbom_writers.py -------------------------------------------------------------------------------- /tools/sbom/sbom_writers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/sbom/sbom_writers_test.py -------------------------------------------------------------------------------- /tools/signapk/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/signapk/Android.bp -------------------------------------------------------------------------------- /tools/signapk/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_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/GrapheneOS/platform_build/HEAD/tools/signapk/test/run -------------------------------------------------------------------------------- /tools/signtos/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/signtos/Android.bp -------------------------------------------------------------------------------- /tools/signtos/SignTos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_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/GrapheneOS/platform_build/HEAD/tools/soong_to_convert.py -------------------------------------------------------------------------------- /tools/stub_diff_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/stub_diff_analyzer.py -------------------------------------------------------------------------------- /tools/test_extract_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/test_extract_kernel.py -------------------------------------------------------------------------------- /tools/test_post_process_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/test_post_process_props.py -------------------------------------------------------------------------------- /tools/tool_event_logger/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/tool_event_logger/Android.bp -------------------------------------------------------------------------------- /tools/tool_event_logger/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/tools/asuite:/OWNERS 2 | 3 | zhuoyao@google.com 4 | -------------------------------------------------------------------------------- /tools/warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn.py -------------------------------------------------------------------------------- /tools/warn/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/.pylintrc -------------------------------------------------------------------------------- /tools/warn/OWNERS: -------------------------------------------------------------------------------- 1 | per-file * =srhines@google.com 2 | -------------------------------------------------------------------------------- /tools/warn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/warn/android_project_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/android_project_list.py -------------------------------------------------------------------------------- /tools/warn/chrome_project_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/chrome_project_list.py -------------------------------------------------------------------------------- /tools/warn/cpp_warn_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/cpp_warn_patterns.py -------------------------------------------------------------------------------- /tools/warn/html_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/html_writer.py -------------------------------------------------------------------------------- /tools/warn/java_warn_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/java_warn_patterns.py -------------------------------------------------------------------------------- /tools/warn/make_warn_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/make_warn_patterns.py -------------------------------------------------------------------------------- /tools/warn/other_warn_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/other_warn_patterns.py -------------------------------------------------------------------------------- /tools/warn/severity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/severity.py -------------------------------------------------------------------------------- /tools/warn/tidy_warn_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/tidy_warn_patterns.py -------------------------------------------------------------------------------- /tools/warn/warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/warn.py -------------------------------------------------------------------------------- /tools/warn/warn_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/warn/warn_common.py -------------------------------------------------------------------------------- /tools/whichgit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/whichgit -------------------------------------------------------------------------------- /tools/zipalign/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_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/GrapheneOS/platform_build/HEAD/tools/zipalign/README.txt -------------------------------------------------------------------------------- /tools/zipalign/ZipAlign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/zipalign/ZipAlign.cpp -------------------------------------------------------------------------------- /tools/zipalign/ZipAlignMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/zipalign/ZipAlignMain.cpp -------------------------------------------------------------------------------- /tools/zipalign/ZipEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/zipalign/ZipEntry.cpp -------------------------------------------------------------------------------- /tools/zipalign/ZipEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/zipalign/ZipEntry.h -------------------------------------------------------------------------------- /tools/zipalign/ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/zipalign/ZipFile.cpp -------------------------------------------------------------------------------- /tools/zipalign/ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/zipalign/ZipFile.h -------------------------------------------------------------------------------- /tools/zipalign/include/ZipAlign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/zipalign/include/ZipAlign.h -------------------------------------------------------------------------------- /tools/zipalign/tests/data/diffOrders.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/zipalign/tests/data/diffOrders.zip -------------------------------------------------------------------------------- /tools/zipalign/tests/data/holes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/zipalign/tests/data/holes.zip -------------------------------------------------------------------------------- /tools/zipalign/tests/data/unaligned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/zipalign/tests/data/unaligned.zip -------------------------------------------------------------------------------- /tools/zipalign/tests/src/align_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/zipalign/tests/src/align_test.cpp -------------------------------------------------------------------------------- /tools/ziptime/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ziptime/Android.bp -------------------------------------------------------------------------------- /tools/ziptime/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ziptime/README.txt -------------------------------------------------------------------------------- /tools/ziptime/ZipEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ziptime/ZipEntry.cpp -------------------------------------------------------------------------------- /tools/ziptime/ZipEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ziptime/ZipEntry.h -------------------------------------------------------------------------------- /tools/ziptime/ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ziptime/ZipFile.cpp -------------------------------------------------------------------------------- /tools/ziptime/ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ziptime/ZipFile.h -------------------------------------------------------------------------------- /tools/ziptime/ZipTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/platform_build/HEAD/tools/ziptime/ZipTime.cpp --------------------------------------------------------------------------------