Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / chromite / lib / signing.py
1 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 """All things Chrome OS signing related"""
6
7 from __future__ import print_function
8
9 import os
10
11 from chromite.cbuildbot import constants
12
13
14 SIGNING_DIR = os.path.join(constants.CHROMITE_DIR, 'signing')
15 INPUT_INSN_DIR = os.path.join(constants.SOURCE_ROOT, 'crostools',
16                               'signer_instructions')
17 TEST_INPUT_INSN_DIR = os.path.join(SIGNING_DIR, 'signer_instructions')