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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/tools/Dockerfile.base
diff --git a/blimp/tools/Dockerfile.base b/blimp/tools/Dockerfile.base
deleted file mode 100644
index eefd0b44978d342cffb326b3a0049bf9e4b1a29c..0000000000000000000000000000000000000000
--- a/blimp/tools/Dockerfile.base
+++ /dev/null
@@ -1,18 +0,0 @@
-# Blimp base Dockerfile. Should be used by all Dockerfiles used by Blimp to
-# ensure test and release binaries all run under the same system environment.
-FROM ubuntu:trusty
-
-# Run the command below to update the lib list.
-# ldd ./blimp_engine_app | grep usr/lib | awk '{print $3}' | xargs -n1 \
-# dpkg-query -S | awk -F: '{print $1}' | sort | uniq
-RUN apt-get update && \
- apt-get install -yq libdrm2 libfontconfig1 libfreetype6 libgraphite2-3 \
- libharfbuzz0b libnspr4 libnss3 libstdc++6
-
-# stunnel4 is needed for incoming TLS connections.
-# wget is needed for crash reporting.
-RUN apt-get update && apt-get install -yq stunnel4 wget
-
-# gdb and strace are not strictly required, but having them around makes
-# debugging easier.
-RUN apt-get update && apt-get install -yq gdb strace
« 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