summaryrefslogtreecommitdiffstats
path: root/blimp
diff options
context:
space:
mode:
authornyquist <nyquist@chromium.org>2016-03-08 10:17:44 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-08 18:19:09 +0000
commite246e4c702d03cde59f044748dc4a8f04b92d269 (patch)
tree7287e160690073906d200d4d490b96be53842efb /blimp
parentf9461d1a2460a7d9d1f9d31e2aef2fc88f120674 (diff)
downloadchromium_src-e246e4c702d03cde59f044748dc4a8f04b92d269.zip
chromium_src-e246e4c702d03cde59f044748dc4a8f04b92d269.tar.gz
chromium_src-e246e4c702d03cde59f044748dc4a8f04b92d269.tar.bz2
Revert of Add Android fonts to blimp engine (patchset #7 id:120001 of https://codereview.chromium.org/1735783002/ )
Reason for revert: Will change to use a single archive instead of multiple files. Original issue's description: > Add Android fonts to blimp engine > > The blimp engine is currently using Linux fonts, which works well > for Linux clients. However, for Android clients, Skia should be > instructed to use Android fonts instead to ensure that the font > rendering works correctly. > > This CL adds a starting set of fonts to be used, ensures that they > are part of the engine bundle, and provides documentation for how > to use them in locally hosted engines and also for how to keep the > fonts up to date. > > This also updates the engine manifest and starts loading a new > dynamic library while running the engine plus fixes the documentation > for running the engine as a container. > > BUG=585668, 588929 > > Committed: https://crrev.com/7b1d1d89b247c0bd82d527c6ded5da4128883274 > Cr-Commit-Position: refs/heads/master@{#379734} TBR=dpranke@chromium.org,dtrainor@chromium.org,maniscalco@chromium.org,open-source-third-party-reviews@google.com,klobag@chromium.org,thakis@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=585668, 588929 Review URL: https://codereview.chromium.org/1772343003 Cr-Commit-Position: refs/heads/master@{#379860}
Diffstat (limited to 'blimp')
-rw-r--r--blimp/README.md5
-rw-r--r--blimp/docs/container.md8
-rw-r--r--blimp/docs/fonts.md39
-rw-r--r--blimp/docs/running.md3
-rw-r--r--blimp/engine/BUILD.gn1
-rw-r--r--blimp/engine/DEPS1
-rw-r--r--blimp/engine/Dockerfile4
-rw-r--r--blimp/engine/engine-manifest.txt209
-rwxr-xr-xblimp/engine/start_engine.sh3
-rw-r--r--blimp/tools/manifest-blacklist.txt4
10 files changed, 12 insertions, 265 deletions
diff --git a/blimp/README.md b/blimp/README.md
index 3ed48f9..adff5d3 100644
--- a/blimp/README.md
+++ b/blimp/README.md
@@ -14,10 +14,7 @@ For testing blimp, read more at [testing](docs/test.md).
For running blimp, read more at [running](docs/running.md).
-## Updating Fonts
-
-For updating the fonts that blimp supports, read more at [fonts](docs/fonts.md).
-
## New to Markdown?
For learning more about Markdown, read more at [markdown](docs/markdown.md).
+
diff --git a/blimp/docs/container.md b/blimp/docs/container.md
index 7a1902a..31adc80 100644
--- a/blimp/docs/container.md
+++ b/blimp/docs/container.md
@@ -43,7 +43,7 @@ dependencies. From time to time, this list may need to be updated. Use
```bash
./blimp/tools/generate-engine-manifest.py \
- --build-dir out-chromeos/Debug \
+ --build-dir out-linux/Debug \
--target //blimp/engine:blimp_engine \
--output blimp/engine/engine-manifest.txt
```
@@ -56,7 +56,7 @@ dependencies.
Using the tarfile you can create a Docker image:
```bash
-docker build -t blimp_engine - < ./out-chromeos/Debug/blimp_engine_bundle.tar.gz
+docker build -t blimp_engine - < ./out-linux/Debug/blimp_engine_bundle.tar
```
## Running the Engine in a Docker Container
@@ -74,8 +74,7 @@ few files that are not provided by the container. You need:
public certificate. Permissions should be set to 644.
* `$CONFIG_DIR/client_token`: A file with a non-empty string used as the
client token (the shared secret between the client and the engine).
- Permissions should also be set to 644. See [running](running.md) for how
- to get the default token from the source code.
+ Persmissions should also be set to 644.
This setup step is only required once and can be reused for all the rest of the
runs of the engine.
@@ -95,3 +94,4 @@ docker run ... blimp_engine --with-my-flags
```
See the [blimp engine `Dockerfile`](../engine/Dockerfile) to find out what flags
are passed by default.
+
diff --git a/blimp/docs/fonts.md b/blimp/docs/fonts.md
deleted file mode 100644
index 44b744f..0000000
--- a/blimp/docs/fonts.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# Updating Blimp Fonts
-
-1. Clone the git-repositories listed in
- `//third_party/blimp_fonts/README.chromium`, and roll forward to the commit
- you want.
-1. Copy the necessary files to `//third_party/blimp_fonts`.
-1. Verify that the `LICENSE` file is still up to date and lists all relevant
- licenses and which fonts use which license.
-1. Update the `//third_party/blimp_fonts:fonts` target to include all the
- current fonts and their license files.
-1. Update the engine dependencies using
- `//blimp/tools/generate-engine-manifest.py`. This step is documented in
- `//blimp/docs/container.md`.
-1. Run the `upload_to_google_storage.py` (from depot_tools) script to upload
- the files. To do this, execute:
-
- ```bash
- find ./third_party/blimp_fonts \
- -regex '^.*.\(ttf\|otf\)$' -type f -print0 | \
- upload_to_google_storage.py --use_null_terminator -b chromium-fonts -
- ```
-
- If the set of fonts includes more than `.ttf` or `.otf` files, you must
- update the regular expression to include such fonts.
-1. Verify that `//third_party/blimp_fonts/.gitignore` lists the correct files
- to ignore.
-1. Add all the `.sha1` files to the chromium src repository, by executing the
- following command:
-
- ```bash
- git add ./third_party/blimp_fonts/*.sha1
- ```
-
-1. Commit and upload the change for review:
-
- ```bash
- git commit
- git cl upload
- ```
diff --git a/blimp/docs/running.md b/blimp/docs/running.md
index bb92199..8accd3e 100644
--- a/blimp/docs/running.md
+++ b/blimp/docs/running.md
@@ -100,8 +100,6 @@ also start a new shell and keep the following command running:
compositor.
* `--disable-cached-picture-raster`: Ensures that rasterized content is not
destroyed before serialization.
-* `--android-fonts-path=$PATH`: Path to where the fonts are located.
- Typically this would be `out-linux/Debug/gen/third_party/blimp_fonts`.
#### Typical invocation
When the client connects to a manually specified engine instead of using the
@@ -124,7 +122,6 @@ out-linux/Debug/blimp_engine_app \
--disable-cached-picture-raster \
--blimp-client-token-path=/tmp/blimpengine-token \
--user-data-dir=/tmp/blimpengine \
- --android-fonts-path=out-linux/Debug/gen/third_party/blimp_fonts \
--enable-logging=stderr \
--vmodule="blimp*=1"
```
diff --git a/blimp/engine/BUILD.gn b/blimp/engine/BUILD.gn
index a19eb10..5bd4c21 100644
--- a/blimp/engine/BUILD.gn
+++ b/blimp/engine/BUILD.gn
@@ -223,7 +223,6 @@ if (is_linux) {
":blimp_engine_app",
":pak",
"//sandbox/linux:chrome_sandbox",
- "//third_party/blimp_fonts",
]
# List dependencies as both deps and data_deps to ensure changes trigger a
diff --git a/blimp/engine/DEPS b/blimp/engine/DEPS
index 5c16370..e4ebc4e 100644
--- a/blimp/engine/DEPS
+++ b/blimp/engine/DEPS
@@ -6,7 +6,6 @@ include_rules = [
"+components/web_cache/renderer",
"+content/public",
"+net",
- "+third_party/blimp_fonts",
"+third_party/khronos/GLES2/gl2.h",
"+third_party/WebKit/public/web/WebInputEvent.h",
"+ui/aura",
diff --git a/blimp/engine/Dockerfile b/blimp/engine/Dockerfile
index 7e3cbba..0410cf8 100644
--- a/blimp/engine/Dockerfile
+++ b/blimp/engine/Dockerfile
@@ -13,10 +13,7 @@ RUN mkdir /engine
RUN useradd -ms /bin/bash blimp_user
-# The glob below expands to all files, but does not add directories
-# recursively.
ADD * /engine/
-ADD gen/third_party/blimp_fonts /engine/fonts
RUN mv /engine/chrome_sandbox /engine/chrome-sandbox
RUN chown -R blimp_user /engine
@@ -24,3 +21,4 @@ USER blimp_user
WORKDIR "/engine"
ENTRYPOINT ["/engine/start_engine.sh"]
+
diff --git a/blimp/engine/engine-manifest.txt b/blimp/engine/engine-manifest.txt
index b24bcc8..d84b8f9 100644
--- a/blimp/engine/engine-manifest.txt
+++ b/blimp/engine/engine-manifest.txt
@@ -1,7 +1,7 @@
# Runtime dependencies for the Blimp Engine
#
# This file was generated by running:
-# generate-engine-manifest.py --build-dir out-chromeos/Debug --target //blimp/engine:blimp_engine --output blimp/engine/engine-manifest.txt
+# generate-engine-manifest.py --build-dir out/Linux --target //blimp/engine:blimp_engine --output blimp/engine/engine-manifest.txt
#
# Note: Any unnecessary dependencies should be added to
# manifest-blacklist.txt and this file should be regenerated.
@@ -9,209 +9,4 @@
icudtl.dat
natives_blob.bin
blimp_engine.pak
-./chrome_sandbox
-gen/third_party/blimp_fonts/AndroidClock.ttf
-gen/third_party/blimp_fonts/AndroidClock_Highlight.ttf
-gen/third_party/blimp_fonts/AndroidClock_Solid.ttf
-gen/third_party/blimp_fonts/CarroisGothicSC-Regular.ttf
-gen/third_party/blimp_fonts/Clockopia.ttf
-gen/third_party/blimp_fonts/ComingSoon.ttf
-gen/third_party/blimp_fonts/CutiveMono.ttf
-gen/third_party/blimp_fonts/DancingScript-Bold.ttf
-gen/third_party/blimp_fonts/DancingScript-Regular.ttf
-gen/third_party/blimp_fonts/DroidSansFallback.ttf
-gen/third_party/blimp_fonts/DroidSansFallbackFull.ttf
-gen/third_party/blimp_fonts/DroidSansMono.ttf
-gen/third_party/blimp_fonts/LICENSE
-gen/third_party/blimp_fonts/LICENSE.Apache
-gen/third_party/blimp_fonts/LICENSE.OFL
-gen/third_party/blimp_fonts/MTLc3m.ttf
-gen/third_party/blimp_fonts/MTLmr3m.ttf
-gen/third_party/blimp_fonts/NanumGothic.ttf
-gen/third_party/blimp_fonts/NanumGothicBold.ttf
-gen/third_party/blimp_fonts/NotoColorEmoji.ttf
-gen/third_party/blimp_fonts/NotoKufiArabic-Bold.ttf
-gen/third_party/blimp_fonts/NotoKufiArabic-Regular.ttf
-gen/third_party/blimp_fonts/NotoNaskhArabic-Bold.ttf
-gen/third_party/blimp_fonts/NotoNaskhArabic-Regular.ttf
-gen/third_party/blimp_fonts/NotoNaskhArabicUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoNaskhArabicUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSans-Bold.ttf
-gen/third_party/blimp_fonts/NotoSans-BoldItalic.ttf
-gen/third_party/blimp_fonts/NotoSans-Italic.ttf
-gen/third_party/blimp_fonts/NotoSans-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansArmenian-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansArmenian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansAvestan-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansBalinese-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansBamum-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansBatak-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansBengali-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansBengali-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansBengaliUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansBengaliUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansBrahmi-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansBuginese-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansBuhid-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansCanadianAboriginal-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansCarian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansCham-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansCham-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansCherokee-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansCoptic-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansCuneiform-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansCypriot-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansDeseret-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansDevanagari-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansDevanagari-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansDevanagariUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansDevanagariUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansEgyptianHieroglyphs-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansEthiopic-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansEthiopic-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansGeorgian-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansGeorgian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansGlagolitic-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansGothic-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansGujarati-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansGujarati-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansGujaratiUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansGujaratiUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansGurmukhi-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansGurmukhi-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansGurmukhiUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansGurmukhiUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansHanunoo-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansHebrew-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansHebrew-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansImperialAramaic-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansInscriptionalPahlavi-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansInscriptionalParthian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansJP-Regular-Subsetted.otf
-gen/third_party/blimp_fonts/NotoSansJP-Regular.otf
-gen/third_party/blimp_fonts/NotoSansJavanese-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansKR-Regular.otf
-gen/third_party/blimp_fonts/NotoSansKaithi-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansKannada-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansKannada-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansKannadaUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansKannadaUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansKayahLi-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansKharoshthi-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansKhmer-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansKhmer-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansKhmerUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansKhmerUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansLao-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansLao-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansLaoUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansLaoUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansLepcha-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansLimbu-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansLinearB-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansLisu-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansLycian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansLydian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansMalayalam-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansMalayalam-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansMalayalamUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansMalayalamUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansMandaic-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansMeeteiMayek-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansMongolian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansMyanmar-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansMyanmar-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansMyanmarUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansMyanmarUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansNKo-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansNewTaiLue-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansOgham-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansOlChiki-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansOldItalic-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansOldPersian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansOldSouthArabian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansOldTurkic-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansOriya-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansOriya-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansOriyaUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansOriyaUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansOsmanya-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansPhagsPa-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansPhoenician-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansRejang-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansRunic-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansSC-Regular.otf
-gen/third_party/blimp_fonts/NotoSansSamaritan-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansSaurashtra-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansShavian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansSinhala-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansSinhala-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansSundanese-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansSylotiNagri-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansSymbols-Regular-Subsetted.ttf
-gen/third_party/blimp_fonts/NotoSansSymbols-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansSyriacEastern-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansSyriacEstrangela-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansSyriacWestern-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansTC-Regular.otf
-gen/third_party/blimp_fonts/NotoSansTagalog-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansTagbanwa-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansTaiLe-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansTaiTham-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansTaiViet-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansTamil-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansTamil-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansTamilUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansTamilUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansTelugu-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansTelugu-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansTeluguUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansTeluguUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansThaana-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansThaana-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansThai-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansThai-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansThaiUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansThaiUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansTibetan-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansTifinagh-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansUI-Bold.ttf
-gen/third_party/blimp_fonts/NotoSansUI-BoldItalic.ttf
-gen/third_party/blimp_fonts/NotoSansUI-Italic.ttf
-gen/third_party/blimp_fonts/NotoSansUI-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansUgaritic-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansVai-Regular.ttf
-gen/third_party/blimp_fonts/NotoSansYi-Regular.ttf
-gen/third_party/blimp_fonts/NotoSerif-Bold.ttf
-gen/third_party/blimp_fonts/NotoSerif-BoldItalic.ttf
-gen/third_party/blimp_fonts/NotoSerif-Italic.ttf
-gen/third_party/blimp_fonts/NotoSerif-Regular.ttf
-gen/third_party/blimp_fonts/NotoSerifArmenian-Bold.ttf
-gen/third_party/blimp_fonts/NotoSerifArmenian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSerifGeorgian-Bold.ttf
-gen/third_party/blimp_fonts/NotoSerifGeorgian-Regular.ttf
-gen/third_party/blimp_fonts/NotoSerifKhmer-Bold.ttf
-gen/third_party/blimp_fonts/NotoSerifKhmer-Regular.ttf
-gen/third_party/blimp_fonts/NotoSerifLao-Bold.ttf
-gen/third_party/blimp_fonts/NotoSerifLao-Regular.ttf
-gen/third_party/blimp_fonts/NotoSerifThai-Bold.ttf
-gen/third_party/blimp_fonts/NotoSerifThai-Regular.ttf
-gen/third_party/blimp_fonts/Roboto-Black.ttf
-gen/third_party/blimp_fonts/Roboto-BlackItalic.ttf
-gen/third_party/blimp_fonts/Roboto-Bold.ttf
-gen/third_party/blimp_fonts/Roboto-BoldItalic.ttf
-gen/third_party/blimp_fonts/Roboto-Italic.ttf
-gen/third_party/blimp_fonts/Roboto-Light.ttf
-gen/third_party/blimp_fonts/Roboto-LightItalic.ttf
-gen/third_party/blimp_fonts/Roboto-Medium.ttf
-gen/third_party/blimp_fonts/Roboto-MediumItalic.ttf
-gen/third_party/blimp_fonts/Roboto-Regular.ttf
-gen/third_party/blimp_fonts/Roboto-Thin.ttf
-gen/third_party/blimp_fonts/Roboto-ThinItalic.ttf
-gen/third_party/blimp_fonts/RobotoCondensed-Bold.ttf
-gen/third_party/blimp_fonts/RobotoCondensed-BoldItalic.ttf
-gen/third_party/blimp_fonts/RobotoCondensed-Italic.ttf
-gen/third_party/blimp_fonts/RobotoCondensed-Light.ttf
-gen/third_party/blimp_fonts/RobotoCondensed-LightItalic.ttf
-gen/third_party/blimp_fonts/RobotoCondensed-Regular.ttf
-gen/third_party/blimp_fonts/fonts.xml \ No newline at end of file
+./chrome_sandbox \ No newline at end of file
diff --git a/blimp/engine/start_engine.sh b/blimp/engine/start_engine.sh
index a9cf193..f507c24 100755
--- a/blimp/engine/start_engine.sh
+++ b/blimp/engine/start_engine.sh
@@ -8,12 +8,11 @@ stunnel \
-p /engine/data/stunnel.pem \
-P /engine/stunnel.pid \
-d 25466 -r 25467 -f &
-LD_LIBRARY_PATH=/engine/ /engine/blimp_engine_app \
+/engine/blimp_engine_app \
--disable-gpu \
--use-remote-compositing \
--disable-cached-picture-raster \
--blimp-client-token-path=/engine/data/client_token \
- --android-fonts-path=/engine/fonts \
$@ &
# Stop execution if either stunnel or blimp_engine_app die.
diff --git a/blimp/tools/manifest-blacklist.txt b/blimp/tools/manifest-blacklist.txt
index d21b052..ce4c1c9b 100644
--- a/blimp/tools/manifest-blacklist.txt
+++ b/blimp/tools/manifest-blacklist.txt
@@ -2,11 +2,13 @@
# Wildcards (* or ?) are allowed.
*.mojo
-*mojom.js
./libfont_service_library.so
./libtracing_library.so
./libmus_library.so
./libosmesa.so
./libresource_provider_library.so
./mojo_runner
+gen/*
+mus/mus.mojo
snapshot_blob.bin
+