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

Side by Side Diff: components/cast_certificate.gypi

Issue 2306443002: Remove GYP files from components. (Closed)
Patch Set: Remove compiled resources Created 4 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
« no previous file with comments | « components/captive_portal.gypi ('k') | components/cdm.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'cast_certificate',
9 'type': 'static_library',
10 'include_dirs': [
11 '..',
12 ],
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../net/net.gyp:net',
16 'cast_certificate_proto',
17 ],
18 'sources': [
19 'cast_certificate/cast_cert_validator.cc',
20 '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',
24 'cast_certificate/eureka_root_ca_der-inc.h',
25 ],
26 },
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 {
56 'target_name': 'cast_certificate_test_support',
57 'type': 'static_library',
58 'include_dirs': [
59 '..',
60 ],
61 'dependencies': [
62 '../base/base.gyp:base',
63 '../net/net.gyp:net',
64 '../testing/gtest.gyp:gtest',
65 'cast_certificate',
66 ],
67 'sources': [
68 'cast_certificate/cast_cert_validator_test_helpers.cc',
69 'cast_certificate/cast_cert_validator_test_helpers.h',
70 ],
71 },
72 ],
73 }
OLDNEW
« no previous file with comments | « components/captive_portal.gypi ('k') | components/cdm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698