Separate font and flatbuffers in emoji-compat
This will allow us to remove the font dependency from the main emoji2
artifacts while continuing to use the flatbuffers, for a net savings of
2kb in license files (as well as avoiding over license notification).
Bug: b/178035684
Test: ./gradlew createArchive && emoji*:test emoji*:cAT
Change-Id: Id6fba7e33aeac35076eb991fcdc06910752ef4c8
diff --git a/settings.gradle b/settings.gradle
index a72757e..fc2ef1a 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -690,7 +690,8 @@
includeProject(":icing", new File(externalRoot, "icing"), [BuildType.MAIN])
includeProject(":icing:nativeLib", new File(externalRoot, "icing/nativeLib"), [BuildType.MAIN])
-includeProject(":noto-emoji-compat", new File(externalRoot, "noto-fonts/emoji-compat"), [BuildType.MAIN])
+includeProject(":noto-emoji-compat-font", new File(externalRoot, "noto-fonts/emoji-compat"), [BuildType.MAIN])
+includeProject(":noto-emoji-compat-flatbuffers", new File(externalRoot, "noto-fonts/emoji-compat-flatbuffers"), [BuildType.MAIN])
if (isAllProjects()) {
includeProject(":docs-tip-of-tree", "docs-tip-of-tree")