Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: blimp/tools/Dockerfile.base

Issue 2626423004: Remove all //blimp code. (Closed)
Patch Set: One last(?) `git merge` for good measure. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « blimp/test/support/compositor/picture_cache_test_support.cc ('k') | blimp/tools/PRESUBMIT.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Blimp base Dockerfile. Should be used by all Dockerfiles used by Blimp to
2 # ensure test and release binaries all run under the same system environment.
3 FROM ubuntu:trusty
4
5 # Run the command below to update the lib list.
6 # ldd ./blimp_engine_app | grep usr/lib | awk '{print $3}' | xargs -n1 \
7 # dpkg-query -S | awk -F: '{print $1}' | sort | uniq
8 RUN apt-get update && \
9 apt-get install -yq libdrm2 libfontconfig1 libfreetype6 libgraphite2-3 \
10 libharfbuzz0b libnspr4 libnss3 libstdc++6
11
12 # stunnel4 is needed for incoming TLS connections.
13 # wget is needed for crash reporting.
14 RUN apt-get update && apt-get install -yq stunnel4 wget
15
16 # gdb and strace are not strictly required, but having them around makes
17 # debugging easier.
18 RUN apt-get update && apt-get install -yq gdb strace
OLDNEW
« no previous file with comments | « blimp/test/support/compositor/picture_cache_test_support.cc ('k') | blimp/tools/PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698