xref: /aosp_15_r20/external/autotest/client/deps/graphics/graphics.py (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1*9c5db199SXin Li#!/usr/bin/python3
2*9c5db199SXin Li
3*9c5db199SXin Li# Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
4*9c5db199SXin Li# Use of this source code is governed by a BSD-style license that can be
5*9c5db199SXin Li# found in the LICENSE file.
6*9c5db199SXin Li
7*9c5db199SXin Liimport common, os
8*9c5db199SXin Lifrom autotest_lib.client.bin import utils
9*9c5db199SXin Li
10*9c5db199SXin Liversion = 1
11*9c5db199SXin Li
12*9c5db199SXin Lidef setup():
13*9c5db199SXin Li    """Nothing needs to be done here."""
14*9c5db199SXin Li    pass
15*9c5db199SXin Li
16*9c5db199SXin Lipwd = os.getcwd()
17*9c5db199SXin Liutils.update_version(pwd + '/src', True, version, setup)
18