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

Unified Diff: build/android/incremental_install/installer.py

Issue 1385943002: GN: Don't attempt incremental install with sandboxes on some samsung devices (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@device-utils-caching
Patch Set: Created 5 years, 2 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: build/android/incremental_install/installer.py
diff --git a/build/android/incremental_install/installer.py b/build/android/incremental_install/installer.py
index 1a58941edd6dece554834ad1fb65bb0248eca9fb..0a5013836b2fe11d4c1bceb6c239a7b0afbefdc4 100755
--- a/build/android/incremental_install/installer.py
+++ b/build/android/incremental_install/installer.py
@@ -163,12 +163,16 @@ def main():
push_dex_timer.Stop(log=False)
def check_sdk_version():
pkotwicz 2015/10/05 20:02:34 Perhaps rename this to check_selinux() ?
agrieve 2015/10/05 20:08:45 Done.
- if device.build_version_sdk >= version_codes.MARSHMALLOW:
- if apk_help.HasIsolatedProcesses():
- raise Exception('Cannot use perform incremental installs on Android M+ '
- 'without first disabling isolated processes.\n'
- 'To do so, use GN arg:\n'
- ' disable_incremental_isolated_processes=true')
+ # Samsung started using SELinux before Marshmallow. There may be even more
+ # cases where this is required...
+ has_selinux = (device.build_version_sdk >= version_codes.MARSHMALLOW or
+ device.GetProp('selinux.policy_version'))
+ if has_selinux and apk_help.HasIsolatedProcesses():
+ raise Exception('Cannot use incremental installs on Android devices that '
+ 'use using SELinux policies without first disabling '
pkotwicz 2015/10/05 20:02:34 Nit: Remove 'using'
agrieve 2015/10/05 20:08:45 Done.
+ 'isolated processes.\n'
+ 'To do so, use GN arg:\n'
+ ' disable_incremental_isolated_processes=true')
cache_path = '%s/files-cache.json' % device_incremental_dir
def restore_cache():
« 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