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

Side by Side Diff: components/cast_certificate.gypi

Issue 2050983002: Cast device revocation checking. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test failure on 32 bit systems. 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
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',
16 ], 17 ],
17 'sources': [ 18 'sources': [
18 'cast_certificate/cast_cert_validator.cc', 19 'cast_certificate/cast_cert_validator.cc',
19 'cast_certificate/cast_cert_validator.h', 20 'cast_certificate/cast_cert_validator.h',
21 'cast_certificate/cast_crl.cc',
22 'cast_certificate/cast_crl.h',
20 'cast_certificate/cast_root_ca_cert_der-inc.h', 23 'cast_certificate/cast_root_ca_cert_der-inc.h',
21 'cast_certificate/eureka_root_ca_der-inc.h', 24 'cast_certificate/eureka_root_ca_der-inc.h',
22 ], 25 ],
23 }, 26 },
24 { 27 {
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 {
25 'target_name': 'cast_certificate_test_support', 56 'target_name': 'cast_certificate_test_support',
26 'type': 'static_library', 57 'type': 'static_library',
27 'include_dirs': [ 58 'include_dirs': [
28 '..', 59 '..',
29 ], 60 ],
30 'dependencies': [ 61 'dependencies': [
31 '../base/base.gyp:base', 62 '../base/base.gyp:base',
32 '../net/net.gyp:net', 63 '../net/net.gyp:net',
33 '../testing/gtest.gyp:gtest', 64 '../testing/gtest.gyp:gtest',
34 'cast_certificate', 65 'cast_certificate',
35 ], 66 ],
36 'sources': [ 67 'sources': [
37 'cast_certificate/cast_cert_validator_test_helpers.cc', 68 'cast_certificate/cast_cert_validator_test_helpers.cc',
38 'cast_certificate/cast_cert_validator_test_helpers.h', 69 'cast_certificate/cast_cert_validator_test_helpers.h',
39 ], 70 ],
40 }, 71 },
41 ], 72 ],
42 } 73 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698