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

Side by Side Diff: third_party/grpc/templates/tools/dockerfile/apt_get_basic.include

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
(Empty)
1 <%page args="skip_golang=False"/>\
2 # Install Git and basic packages.
3 RUN apt-get update && apt-get install -y ${'\\'}
4 autoconf ${'\\'}
5 autotools-dev ${'\\'}
6 build-essential ${'\\'}
7 bzip2 ${'\\'}
8 ccache ${'\\'}
9 curl ${'\\'}
10 gcc ${'\\'}
11 gcc-multilib ${'\\'}
12 git ${'\\'}
13 % if not skip_golang:
14 golang ${'\\'}
15 % endif
16 gyp ${'\\'}
17 lcov ${'\\'}
18 libc6 ${'\\'}
19 libc6-dbg ${'\\'}
20 libc6-dev ${'\\'}
21 libgtest-dev ${'\\'}
22 libtool ${'\\'}
23 make ${'\\'}
24 perl ${'\\'}
25 strace ${'\\'}
26 python-dev ${'\\'}
27 python-setuptools ${'\\'}
28 python-yaml ${'\\'}
29 telnet ${'\\'}
30 unzip ${'\\'}
31 wget ${'\\'}
32 zip && apt-get clean
33
34 #================
35 # Build profiling
36 RUN apt-get update && apt-get install -y time && apt-get clean
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698