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

Unified Diff: setup_links.py

Issue 1145343009: Roll chromium_revision 3d86a83..b2c6a86 (332345:332773) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Optimized a little 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 | « DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: setup_links.py
diff --git a/setup_links.py b/setup_links.py
index 992c03efc75c4dc3c095136ec30e7e10cee01181..1edb7c238e4e4da433ddd04cd201ed1dd31f7698 100755
--- a/setup_links.py
+++ b/setup_links.py
@@ -76,7 +76,8 @@ DIRECTORIES = [
]
from sync_chromium import get_target_os_list
-if 'android' in get_target_os_list():
+target_os = get_target_os_list()
+if 'android' in target_os:
DIRECTORIES += [
'base',
'third_party/android_testrunner',
@@ -95,6 +96,8 @@ if 'android' in get_target_os_list():
'tools/grit',
'tools/relocation_packer'
]
+if 'ios' in target_os:
+ DIRECTORIES.append('third_party/class-dump')
FILES = {
'tools/find_depot_tools.py': None,
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698