Upstream version 8.36.161.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 ChromeOS signing related"""
6
7 import os
8
9 from chromite.buildbot import constants
10
11
12 SIGNING_DIR = os.path.join(constants.CHROMITE_DIR, 'signing')
13 INPUT_INSN_DIR = os.path.join(constants.SOURCE_ROOT, 'crostools',
14                               'signer_instructions')
15 TEST_INPUT_INSN_DIR = os.path.join(SIGNING_DIR, 'signer_instructions')