2019-06-13 06:30:51 +00:00
|
|
|
# -*- coding:utf-8 -*-
|
|
|
|
#
|
2014-01-30 23:09:59 +00:00
|
|
|
# Copyright (C) 2014 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from __future__ import print_function
|
2019-07-11 04:07:42 +00:00
|
|
|
try:
|
2019-07-31 06:29:25 +00:00
|
|
|
from importlib.machinery import SourceFileLoader
|
|
|
|
_loader = lambda *args: SourceFileLoader(*args).load_module()
|
2019-07-11 04:07:42 +00:00
|
|
|
except ImportError:
|
2019-07-31 06:29:25 +00:00
|
|
|
import imp
|
|
|
|
_loader = lambda *args: imp.load_source(*args)
|
2014-01-30 23:09:59 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
def WrapperPath():
|
|
|
|
return os.path.join(os.path.dirname(__file__), 'repo')
|
|
|
|
|
2020-02-12 06:20:19 +00:00
|
|
|
|
2014-01-30 23:09:59 +00:00
|
|
|
_wrapper_module = None
|
2020-02-12 06:20:19 +00:00
|
|
|
|
|
|
|
|
2014-01-30 23:09:59 +00:00
|
|
|
def Wrapper():
|
|
|
|
global _wrapper_module
|
|
|
|
if not _wrapper_module:
|
2019-07-11 04:07:42 +00:00
|
|
|
_wrapper_module = _loader('wrapper', WrapperPath())
|
2014-01-30 23:09:59 +00:00
|
|
|
return _wrapper_module
|