Home | History | Annotate | Download | only in page_cycler_dep
      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 
     10 import os
     11 from autotest_lib.client.bin import utils
     12 
     13 version = 1
     14 
     15 def setup(top_dir):
     16     return
     17 
     18 
     19 pwd = os.getcwd()
     20 utils.update_version(pwd + '/src', False, version, setup, pwd)
     21