tree: 82d2d544056c1ac9e7ae8acf69e172126e1c5bdf [path history] [tgz]
  1. cablev2_authenticator/
  2. chime/
  3. dev_ui/
  4. extra_icu/
  5. image_editor/
  6. stack_unwinder/
  7. test_dummy/
  8. buildflags.gni
  9. chrome_bundle_tmpl.gni
  10. chrome_feature_module_tmpl.gni
  11. chrome_feature_modules.gni
  12. DEPS
  13. OWNERS
  14. README.md
chrome/android/modules/README.md

Chrome on Android App Bundles and Dynamic Feature Modules

This directory contains GN templates and code for Chrome-specific Android app bundles and dynamic feature modules. Among others, it offers the following:

  • A list of descriptors for all modules packaged into the Chrome bundles in chrome_feature_modules.gni.

  • A GN template to instantiate a Chrome-specific module in chrome_feature_module_tmpl.gni. It wraps an android_app_bundle_module and adds things like multi ABI (e.g. 64 bit browser and 32 bit WebView) and auto-generated Java module descriptors (see here for more details).

  • A GN template to instantiate a Chrome-specific bundle in chrome_bundle_tmpl.gni. It instantiates a chrome_feature_module for each passed module descriptors as well as an android_app_bundle.

  • A subfolder for each module containing module-specific code such as module interfaces and providers.