1#!/usr/bin/env python3 2# Copyright 2020 The ChromiumOS Authors 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6import os 7 8THIS_DIR = os.path.dirname(__file__) 9 10CONFIG_JSON = 'config.jsonproto' 11 12FAKE_PROGRAM_CONFIG = '%s/fake_program/%s' % (THIS_DIR, CONFIG_JSON) 13FAKE_PROJECT_CONFIG = '%s/fake_project/%s' % (THIS_DIR, CONFIG_JSON) 14