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

Side by Side Diff: components/cronet.gypi

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: Disabled testQuicLoadUrl until local QUIC server is available. Removed setQuicHint. 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['OS=="android" and use_icu_alternatives_on_android==1', { 7 ['OS=="android" and use_icu_alternatives_on_android==1', {
8 # TODO(mef): Figure out what needs to be done for gn script. 8 # TODO(mef): Figure out what needs to be done for gn script.
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 ], 400 ],
401 'variables': { 401 'variables': {
402 'jni_gen_package': 'cronet_tests', 402 'jni_gen_package': 'cronet_tests',
403 }, 403 },
404 'includes': [ '../build/jni_generator.gypi' ], 404 'includes': [ '../build/jni_generator.gypi' ],
405 }, 405 },
406 { 406 {
407 'target_name': 'libcronet_tests', 407 'target_name': 'libcronet_tests',
408 'type': 'shared_library', 408 'type': 'shared_library',
409 'sources': [ 409 'sources': [
410 'cronet/android/test/cronet_tests_jni.cc', 410 'cronet/android/test/cronet_test_jni.cc',
411 ], 411 ],
412 'dependencies': [ 412 'dependencies': [
413 'cronet_static', 413 'cronet_static',
414 'cronet_tests_jni_headers', 414 'cronet_tests_jni_headers',
415 '../base/base.gyp:base', 415 '../base/base.gyp:base',
416 '../net/net.gyp:net', 416 '../net/net.gyp:net',
417 '../net/net.gyp:quic_tools', 417 '../net/net.gyp:quic_tools',
418 '../url/url.gyp:url_lib', 418 '../url/url.gyp:url_lib',
419 ], 419 ],
420 }, 420 },
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 'java_in_dir': 'cronet/android/test/javatests', 459 'java_in_dir': 'cronet/android/test/javatests',
460 'resource_dir': 'cronet/android/test/res', 460 'resource_dir': 'cronet/android/test/res',
461 'is_test_apk': 1, 461 'is_test_apk': 1,
462 }, 462 },
463 'includes': [ '../build/java_apk.gypi' ], 463 'includes': [ '../build/java_apk.gypi' ],
464 }, 464 },
465 ], 465 ],
466 }], # OS=="android" 466 }], # OS=="android"
467 ], 467 ],
468 } 468 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698