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

Side by Side Diff: components/cronet.gypi

Issue 1874393002: 🏆 Allow Android test wrapper scripts to specify their timeouts in GN/GYP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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"', { 7 ['OS=="android"', {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'cronet_jni_headers', 10 'target_name': 'cronet_jni_headers',
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 ], 559 ],
560 }, 560 },
561 { 561 {
562 'target_name': 'cronet_unittests_apk', 562 'target_name': 'cronet_unittests_apk',
563 'type': 'none', 563 'type': 'none',
564 'dependencies': [ 564 'dependencies': [
565 'cronet_unittests', 565 'cronet_unittests',
566 ], 566 ],
567 'variables': { 567 'variables': {
568 'test_suite_name': 'cronet_unittests', 568 'test_suite_name': 'cronet_unittests',
569 'shard_timeout': 180,
569 }, 570 },
570 'includes': [ 571 'includes': [
571 '../build/apk_test.gypi', 572 '../build/apk_test.gypi',
572 ], 573 ],
573 }, 574 },
574 { 575 {
575 'target_name': 'cronet_package', 576 'target_name': 'cronet_package',
576 'type': 'none', 577 'type': 'none',
577 'dependencies': [ 578 'dependencies': [
578 'libcronet', 579 'libcronet',
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 }, 727 },
727 ], 728 ],
728 }, 729 },
729 ], 730 ],
730 'variables': { 731 'variables': {
731 'enable_data_reduction_proxy_support%': 0, 732 'enable_data_reduction_proxy_support%': 0,
732 }, 733 },
733 }], # OS=="android" 734 }], # OS=="android"
734 ], 735 ],
735 } 736 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698