README 597 B

1234567891011
  1. This directory holds components reused in multiple embedders which themselves
  2. have extensions dependencies. Components such as these do not belong in the root
  3. src/components, because src/extensions already depends on src/components. A
  4. component in src/components can not have an extensions dependency.
  5. Code in an extensions/component should be placed in a namespace corresponding to
  6. the name of the component (ignoring extensions); e.g. for a component living in
  7. extensions/components/foo, code in that component should be in the foo::
  8. namespace.
  9. See src/components/README for additional notes.