1#!/usr/bin/python
2
3# Copyright (c) 2013 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 perf_data_dep dependency.
8
9This is done by the Chrome ebuild so this in fact has nothing to do.
10"""
11
12import os
13from autotest_lib.client.bin import utils
14
15version = 1
16
17def setup(top_dir):
18    return
19
20
21pwd = os.getcwd()
22utils.update_version(pwd + '/src', False, version, setup, None)
23