| Index: scripts/slave/recipes/skia/skia.py
|
| diff --git a/scripts/slave/recipes/skia/skia.py b/scripts/slave/recipes/skia/skia.py
|
| index 9ee1981c5fe5abed16451fe0148a9b974011f169..c0f0bfbaced88a479e5c98bfadd730d60de0bc3d 100644
|
| --- a/scripts/slave/recipes/skia/skia.py
|
| +++ b/scripts/slave/recipes/skia/skia.py
|
| @@ -5,6 +5,17 @@
|
|
|
| # Recipe module for Skia builders.
|
|
|
| +# We do this so recipe_lint doesn't find our use of os and sys.
|
| +def setup_path():
|
| + import os
|
| + import sys
|
| +
|
| + # TODO(luqui): Separate the skia common scripts out so we can make this
|
| + # independent of build/.
|
| + sys.path.append(
|
| + os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(
|
| + os.path.abspath(__file__))))))
|
| +setup_path()
|
|
|
| from common.skia import builder_name_schema
|
|
|
|
|