summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild/android/gyp/lint.py10
-rw-r--r--chrome/test/chromedriver/test/webview_shell/java/AndroidManifest.xml2
-rw-r--r--chrome/test/chromedriver/test/webview_shell/java/res/mipmap/icon.png (renamed from chrome/test/chromedriver/test/webview_shell/java/res/drawable/icon.png)bin718 -> 718 bytes
3 files changed, 9 insertions, 3 deletions
diff --git a/build/android/gyp/lint.py b/build/android/gyp/lint.py
index 20484f7..71c1a6f 100755
--- a/build/android/gyp/lint.py
+++ b/build/android/gyp/lint.py
@@ -107,7 +107,6 @@ def _OnStaleMd5(changes, lint_path, config_path, processed_config_path,
new_dir = os.path.join(temp_dir, str(len(src_dirs)))
os.mkdir(new_dir)
src_dirs.append(new_dir)
- cmd.extend(['--sources', _RelativizePath(new_dir)])
return new_dir
def PathInDir(d, src):
@@ -121,10 +120,17 @@ def _OnStaleMd5(changes, lint_path, config_path, processed_config_path,
break
if not src_dir:
src_dir = NewSourceDir()
+ cmd.extend(['--sources', _RelativizePath(src_dir)])
os.symlink(os.path.abspath(src), PathInDir(src_dir, src))
+ # Put the manifest in a temporary directory in order to avoid lint detecting
+ # sibling res/ and src/ directories (which should be pass explicitly if they
+ # are to be included).
if manifest_path:
- cmd.append(_RelativizePath(os.path.join(manifest_path, os.pardir)))
+ src_dir = NewSourceDir()
+ os.symlink(os.path.abspath(manifest_path),
+ PathInDir(src_dir, manifest_path))
+ cmd.append(src_dir)
if os.path.exists(result_path):
os.remove(result_path)
diff --git a/chrome/test/chromedriver/test/webview_shell/java/AndroidManifest.xml b/chrome/test/chromedriver/test/webview_shell/java/AndroidManifest.xml
index 3703b70..32070d0c 100644
--- a/chrome/test/chromedriver/test/webview_shell/java/AndroidManifest.xml
+++ b/chrome/test/chromedriver/test/webview_shell/java/AndroidManifest.xml
@@ -14,7 +14,7 @@
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application android:label="ChromeDriverWebviewShell"
- android:icon="@drawable/icon"
+ android:icon="@mipmap/icon"
android:allowBackup="false">
<activity android:name=".Main"
android:launchMode="singleTask"
diff --git a/chrome/test/chromedriver/test/webview_shell/java/res/drawable/icon.png b/chrome/test/chromedriver/test/webview_shell/java/res/mipmap/icon.png
index d2b0293..d2b0293 100644
--- a/chrome/test/chromedriver/test/webview_shell/java/res/drawable/icon.png
+++ b/chrome/test/chromedriver/test/webview_shell/java/res/mipmap/icon.png
Binary files differ