1#!/usr/bin/python
2
3# Copyright (c) 2012 The Chromium Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7"""Install the page_cycler_dep dependency.
8"""
9
10import os
11from autotest_lib.client.bin import utils
12
13version = 1
14
15def setup(top_dir):
16    return
17
18
19pwd = os.getcwd()
20utils.update_version(pwd + '/src', False, version, setup, pwd)
21