diff options
author | Xavier Ducrohet <xav@android.com> | 2012-11-05 10:55:13 -0800 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-11-29 17:09:46 -0800 |
commit | fbf28acf3eb01515e94444de8a916a3c2d779211 (patch) | |
tree | fa45276338a2d57398e22c19f512f4959442455f /common/src/com/android | |
parent | 1456483b66473b16ecc8b2dcfb05a450decf9456 (diff) | |
download | sdk-fbf28acf3eb01515e94444de8a916a3c2d779211.zip sdk-fbf28acf3eb01515e94444de8a916a3c2d779211.tar.gz sdk-fbf28acf3eb01515e94444de8a916a3c2d779211.tar.bz2 |
Add filterscript suppport.
Change-Id: Iaefb640f35bdad1dc5d4be8565c2cafdc02e8324
Diffstat (limited to 'common/src/com/android')
-rw-r--r-- | common/src/com/android/SdkConstants.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/src/com/android/SdkConstants.java b/common/src/com/android/SdkConstants.java index c0ed9c7..0708647 100644 --- a/common/src/com/android/SdkConstants.java +++ b/common/src/com/android/SdkConstants.java @@ -868,6 +868,8 @@ public final class SdkConstants { public static final String EXT_AIDL = "aidl"; //$NON-NLS-1$ /** Extension of Renderscript files, i.e. "rs" */ public static final String EXT_RS = "rs"; //$NON-NLS-1$ + /** Extension of FilterScript files, i.e. "fs" */ + public static final String EXT_FS = "fs"; //$NON-NLS-1$ /** Extension of dependency files, i.e. "d" */ public static final String EXT_DEP = "d"; //$NON-NLS-1$ /** Extension of native libraries, i.e. "so" */ @@ -887,6 +889,8 @@ public final class SdkConstants { public static final String DOT_AIDL = DOT + EXT_AIDL; /** Dot-Extension of renderscript files, i.e. ".rs" */ public static final String DOT_RS = DOT + EXT_RS; + /** Dot-Extension of FilterScript files, i.e. ".fs" */ + public static final String DOT_FS = DOT + EXT_FS; /** Dot-Extension of dependency files, i.e. ".d" */ public static final String DOT_DEP = DOT + EXT_DEP; /** Dot-Extension of dex files, i.e. ".dex" */ |