skia2/platform_tools/android/tests/test_variables.py
commit-bot@chromium.org 8933563174 Scripts to generate Android.mk for framework Skia.
In order to create Android.mk, run

>> python platform_tools/android/bin/gyp_to_android.py

For the change in the Android.mk file, see
https://googleplex-android-review.git.corp.google.com/#/c/408170/

(SkipBuildbotRuns)

BUG=skia:1975
R=djsollen@google.com, epoger@google.com

Author: scroggo@google.com

Review URL: https://codereview.chromium.org/140503007

git-svn-id: http://skia.googlecode.com/svn/trunk@13344 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-02-06 16:13:00 +00:00

23 lines
515 B
Python

#!/usr/bin/python
# Copyright 2014 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""
Common variables for tests.
"""
import os
# Find this file so we can find the python files to test.
SCRIPT_DIR = os.path.dirname(__file__)
ANDROID_DIR = os.path.normpath(os.path.join(SCRIPT_DIR, os.pardir))
# Path to gyp_to_android.
BIN_DIR = os.path.join(ANDROID_DIR, 'bin')
# Path to generator files.
GYP_GEN_DIR = os.path.join(ANDROID_DIR, 'gyp_gen')