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

Side by Side Diff: components/cast_certificate.gypi

Issue 2181013002: Revert of Cast device revocation checking. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'cast_certificate', 8 'target_name': 'cast_certificate',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '..', 11 '..',
12 ], 12 ],
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../net/net.gyp:net', 15 '../net/net.gyp:net',
16 'cast_certificate_proto',
17 ], 16 ],
18 'sources': [ 17 'sources': [
19 'cast_certificate/cast_cert_validator.cc', 18 'cast_certificate/cast_cert_validator.cc',
20 'cast_certificate/cast_cert_validator.h', 19 'cast_certificate/cast_cert_validator.h',
21 'cast_certificate/cast_crl.cc',
22 'cast_certificate/cast_crl.h',
23 'cast_certificate/cast_root_ca_cert_der-inc.h', 20 'cast_certificate/cast_root_ca_cert_der-inc.h',
24 'cast_certificate/eureka_root_ca_der-inc.h', 21 'cast_certificate/eureka_root_ca_der-inc.h',
25 ], 22 ],
26 }, 23 },
27 { 24 {
28 'target_name': 'cast_certificate_proto',
29 'type': 'static_library',
30 'sources': [
31 'cast_certificate/proto/revocation.proto',
32 ],
33 'includes': [
34 '../build/protoc.gypi'
35 ],
36 'variables': {
37 'proto_in_dir': 'cast_certificate/proto',
38 'proto_out_dir': 'components/cast_certificate/proto',
39 },
40 },
41 {
42 'target_name': 'cast_certificate_test_proto',
43 'type': 'static_library',
44 'sources': [
45 'cast_certificate/proto/test_suite.proto',
46 ],
47 'includes': [
48 '../build/protoc.gypi'
49 ],
50 'variables': {
51 'proto_in_dir': 'cast_certificate/proto',
52 'proto_out_dir': 'components/cast_certificate/proto',
53 },
54 },
55 {
56 'target_name': 'cast_certificate_test_support', 25 'target_name': 'cast_certificate_test_support',
57 'type': 'static_library', 26 'type': 'static_library',
58 'include_dirs': [ 27 'include_dirs': [
59 '..', 28 '..',
60 ], 29 ],
61 'dependencies': [ 30 'dependencies': [
62 '../base/base.gyp:base', 31 '../base/base.gyp:base',
63 '../net/net.gyp:net', 32 '../net/net.gyp:net',
64 '../testing/gtest.gyp:gtest', 33 '../testing/gtest.gyp:gtest',
65 'cast_certificate', 34 'cast_certificate',
66 ], 35 ],
67 'sources': [ 36 'sources': [
68 'cast_certificate/cast_cert_validator_test_helpers.cc', 37 'cast_certificate/cast_cert_validator_test_helpers.cc',
69 'cast_certificate/cast_cert_validator_test_helpers.h', 38 'cast_certificate/cast_cert_validator_test_helpers.h',
70 ], 39 ],
71 }, 40 },
72 ], 41 ],
73 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698