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

Unified Diff: components/cronet/tools/cr_cronet.py

Issue 544223003: Add SetSupportsQuic method to explicitly specify server that supports QUIC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync Created 6 years, 3 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
Index: components/cronet/tools/cr_cronet.py
diff --git a/components/cronet/tools/cr_cronet.py b/components/cronet/tools/cr_cronet.py
index 84f6a0f9610c232c17714006ff32b1f633044f05..5aca9a6e3d4884dde02e3a3d8f17d89a56eac777 100755
--- a/components/cronet/tools/cr_cronet.py
+++ b/components/cronet/tools/cr_cronet.py
@@ -44,15 +44,15 @@ def main():
if (options.command=='sync'):
return run ('git pull --rebase && ' + gyp_defines + ' gclient sync')
if (options.command=='build'):
- return run ('ninja -C ' + out_dir + ' cronet_sample_test_apk')
+ return run ('ninja -C ' + out_dir + ' cronet_test_instrumentation_apk')
if (options.command=='install'):
return run ('build/android/adb_install_apk.py ' + release_arg + \
- ' --apk=CronetSample.apk')
+ ' --apk=CronetTest.apk')
if (options.command=='proguard'):
- return run ('ninja -C out/Release cronet_sample_proguard_apk')
+ return run ('ninja -C ' + out_dir + ' cronet_sample_proguard_apk')
if (options.command=='test'):
return run ('build/android/test_runner.py instrumentation '+ \
- release_arg + ' --test-apk=CronetSampleTest')
+ release_arg + ' --test-apk=CronetTestInstrumentation')
parser.print_help()
return 1

Powered by Google App Engine
This is Rietveld 408576698