summaryrefslogtreecommitdiffstats
path: root/android_webview/android_webview_tests.gypi
diff options
context:
space:
mode:
authormkosiba@chromium.org <mkosiba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-04 14:58:49 +0000
committermkosiba@chromium.org <mkosiba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-04 14:58:49 +0000
commitae0f993af5d0395c49b5e0260c87de3b7abbf257 (patch)
treef6d721655b7545fa8e5aeebed775e8e746034779 /android_webview/android_webview_tests.gypi
parent72c507e994e7438e710341caf537859ee3faca11 (diff)
downloadchromium_src-ae0f993af5d0395c49b5e0260c87de3b7abbf257.zip
chromium_src-ae0f993af5d0395c49b5e0260c87de3b7abbf257.tar.gz
chromium_src-ae0f993af5d0395c49b5e0260c87de3b7abbf257.tar.bz2
[android_webview] Don't include files from .svn in assets.
We were including all files from under javatests/assets as resources. This was unnecessarily copying .svn files (and including them in the resulting .apk) and causing a build warning. BUG=173713 TEST=AndroidWebViewTests Builds fine on android trybots. NOTRY=true Review URL: https://chromiumcodereview.appspot.com/12180010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180408 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/android_webview_tests.gypi')
-rw-r--r--android_webview/android_webview_tests.gypi2
1 files changed, 1 insertions, 1 deletions
diff --git a/android_webview/android_webview_tests.gypi b/android_webview/android_webview_tests.gypi
index 5cd4c12a..09077b3 100644
--- a/android_webview/android_webview_tests.gypi
+++ b/android_webview/android_webview_tests.gypi
@@ -23,7 +23,7 @@
'copies': [
{
'destination': '<(PRODUCT_DIR)/android_webview_test/assets',
- 'files': [ '<!@(find <(java_in_dir)/assets -type f)' ]
+ 'files': [ '<!@(find <(java_in_dir)/assets -type f -not -iwholename \'*.svn*\' )' ]
},
],
'includes': [ '../build/java_apk.gypi' ],