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

Unified Diff: fetch_configs/ios_internal.py

Issue 2028413004: Add a configuration to fetch "ios_internal" project. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 7 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: fetch_configs/ios_internal.py
diff --git a/fetch_configs/chromium.py b/fetch_configs/ios_internal.py
similarity index 87%
copy from fetch_configs/chromium.py
copy to fetch_configs/ios_internal.py
index d461aa0fc5e0d556f88363dbed0ad95cdd779494..6730757fc671aff775c05a49045aa83532c4978a 100644
--- a/fetch_configs/chromium.py
+++ b/fetch_configs/ios_internal.py
@@ -14,8 +14,8 @@ class Chromium(config_util.Config):
@staticmethod
def fetch_spec(props):
- url = 'https://chromium.googlesource.com/chromium/src.git'
- solution = { 'name' :'src',
+ url = 'https://chrome-internal.googlesource.com/chrome/ios_internal.git'
+ solution = { 'name' :'src/ios_internal',
'url' : url,
'deps_file': '.DEPS.git',
rohitrao (ping after 24h) 2016/06/02 14:13:12 Just DEPS?
'managed' : False,
@@ -29,6 +29,8 @@ class Chromium(config_util.Config):
}
if props.get('target_os'):
spec['target_os'] = props['target_os'].split(',')
+ else:
+ spec['target_os'] = ['ios', 'mac']
rohitrao (ping after 24h) 2016/06/02 14:13:12 Why is mac in here?
if props.get('target_os_only'):
spec['target_os_only'] = props['target_os_only']
return {
« 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