1#!/bin/bash
2# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6readonly PREREQS=(build-essential protobuf-compiler libprotobuf-dev openssl \
7  libgtest-dev)
8
9# Install quipper pre-requisites.
10sudo apt-get install ${PREREQS[@]}
11