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

Side by Side Diff: components/cronet.gypi

Issue 2021433004: Cert - protobufs to serialize and deserialize CertVerifierCache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Add_support_for_walking_1999733002
Patch Set: Fix comments Created 4 years, 5 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
« no previous file with comments | « no previous file | components/cronet/android/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 'cronet/version.h.in', 167 'cronet/version.h.in',
168 '<@(_outputs)', 168 '<@(_outputs)',
169 ], 169 ],
170 'includes': [ 170 'includes': [
171 '../build/util/version.gypi', 171 '../build/util/version.gypi',
172 ], 172 ],
173 }, 173 },
174 ], 174 ],
175 }, 175 },
176 { 176 {
177 # Protobuf compiler / generator for certificate verifcation protocol
178 # buffer.
179 # GN version: //cronet:cronet_android_cert_proto
180 'target_name': 'cronet_android_cert_proto',
181 'type': 'static_library',
182 'sources': [
183 'cronet/android/cert/proto/cert_verification.proto',
184 ],
185 'variables': {
186 'enable_wexit_time_destructors': 1,
187 'proto_in_dir': 'cronet/android/cert/proto',
188 'proto_out_dir': 'cronet/android/cert/proto',
189 },
190 'includes': [
191 '../build/protoc.gypi',
192 ],
193 },
194 {
177 'target_name': 'cronet_static', 195 'target_name': 'cronet_static',
178 'type': 'static_library', 196 'type': 'static_library',
179 'dependencies': [ 197 'dependencies': [
180 '../net/net.gyp:net', 198 '../net/net.gyp:net',
181 '../url/url.gyp:url_lib', 199 '../url/url.gyp:url_lib',
182 ], 200 ],
183 'conditions': [ 201 'conditions': [
184 ['enable_data_reduction_proxy_support==1', 202 ['enable_data_reduction_proxy_support==1',
185 { 203 {
186 'dependencies': [ 204 'dependencies': [
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 'cronet/android/test/javaperftests/proguard.cfg', 536 'cronet/android/test/javaperftests/proguard.cfg',
519 ], 537 ],
520 'run_findbugs': 1, 538 'run_findbugs': 1,
521 }, 539 },
522 'includes': [ '../build/java_apk.gypi' ], 540 'includes': [ '../build/java_apk.gypi' ],
523 }, 541 },
524 { 542 {
525 'target_name': 'cronet_unittests', 543 'target_name': 'cronet_unittests',
526 'type': '<(gtest_target_type)', 544 'type': '<(gtest_target_type)',
527 'dependencies': [ 545 'dependencies': [
546 'cronet_android_cert_proto',
528 'cronet_static', 547 'cronet_static',
529 'metrics', 548 'metrics',
530 '../base/base.gyp:base', 549 '../base/base.gyp:base',
531 '../base/base.gyp:test_support_base', 550 '../base/base.gyp:test_support_base',
551 '../net/net.gyp:net_test_support',
532 '../testing/gtest.gyp:gtest', 552 '../testing/gtest.gyp:gtest',
533 '../testing/android/native_test.gyp:native_test_native_code', 553 '../testing/android/native_test.gyp:native_test_native_code',
534 ], 554 ],
535 'sources': [ 555 'sources': [
556 'cronet/android/cert/cert_verifier_cache_serializer_unittest.cc',
536 'cronet/run_all_unittests.cc', 557 'cronet/run_all_unittests.cc',
537 'cronet/url_request_context_config_unittest.cc', 558 'cronet/url_request_context_config_unittest.cc',
538 'cronet/histogram_manager_unittest.cc', 559 'cronet/histogram_manager_unittest.cc',
539 ], 560 ],
540 }, 561 },
541 { 562 {
542 'target_name': 'cronet_unittests_apk', 563 'target_name': 'cronet_unittests_apk',
543 'type': 'none', 564 'type': 'none',
544 'dependencies': [ 565 'dependencies': [
545 'cronet_unittests', 566 'cronet_unittests',
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
932 'cronet/ios/test/cronet_bidirectional_stream_test.mm', 953 'cronet/ios/test/cronet_bidirectional_stream_test.mm',
933 'cronet/ios/test/cronet_test_runner.mm', 954 'cronet/ios/test/cronet_test_runner.mm',
934 ], 955 ],
935 }, 956 },
936 ], 957 ],
937 }, 958 },
938 ], 959 ],
939 }], # OS=="ios" 960 }], # OS=="ios"
940 ], 961 ],
941 } 962 }
OLDNEW
« no previous file with comments | « no previous file | components/cronet/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698