Index: docs/accessibility/patts.md |
diff --git a/docs/accessibility/patts.md b/docs/accessibility/patts.md |
index c51b911c73699e25f222529d7c684d0398415104..7d67ee8580b469cb36cd6974acba44ecb5b94d76 100644 |
--- a/docs/accessibility/patts.md |
+++ b/docs/accessibility/patts.md |
@@ -81,3 +81,32 @@ git commit -a |
TEST=Write what you tested here |
repo upload . |
``` |
+ |
+## Ebuild |
+ |
+Note that sometimes you'll have to update the ebuild file that |
+takes the patts data files and installs them, unzipping the .nexe |
+files in the process. |
+ |
+For example, you'll need to edit the ebuild if you add or remove |
+a language code, or if you add or remove a file that needs to be |
+installed as part of the extension. |
+ |
+To update the ebuild, edit this file: |
+ |
+``` |
+/third_party/chromiumos-overlay/chromeos-base/common-assets/common-assets-9999.ebuild |
+``` |
+ |
+If you need to land changes to both common-assets and chromiumos-assets, |
+upload the changes separately and then make them depend on one another |
+using this syntax in the changelog: |
+ |
+``` |
+CQ-DEPEND=CL:12345 |
+``` |
+ |
+Note that you can (and often should) have two changes depend on one another |
+so they'll land atomically. |
+ |
+ |