Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1808)

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/android.py

Issue 1185253002: Ensure --disable-slimming-paint on Android (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/layout_tests/port/android.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/android.py b/Tools/Scripts/webkitpy/layout_tests/port/android.py
index ada4655ebd3caed41667ff57d8c3136348a4562c..65feb52e02ddb845a9b6049d55eef09621464d5c 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/android.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/android.py
@@ -180,7 +180,7 @@ class ContentShellDriverDetails():
return '/data/local/tmp/content-shell-crash-dumps'
def additional_command_line_flags(self, use_breakpad):
- flags = ['--run-layout-test', '--encode-binary']
+ flags = ['--encode-binary']
if use_breakpad:
flags.extend(['--enable-crash-reporter', '--crash-dumps-dir=%s' % self.device_crash_dumps_directory()])
return flags
@@ -461,7 +461,7 @@ class AndroidPort(base.Port):
return self._build_path(MD5SUM_HOST_FILE_NAME)
def additional_driver_flag(self):
- return self._driver_details.additional_command_line_flags(use_breakpad=not self.get_option('disable_breakpad'))
+ return super(AndroidPort, self).additional_driver_flag() + self._driver_details.additional_command_line_flags(use_breakpad=not self.get_option('disable_breakpad'))
def default_timeout_ms(self):
# Android platform has less computing power than desktop platforms.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698