| OLD | NEW |
| 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 { |
| 25 'target_name': 'cast_certificate_test_support', | 42 'target_name': 'cast_certificate_test_support', |
| 26 'type': 'static_library', | 43 'type': 'static_library', |
| 27 'include_dirs': [ | 44 'include_dirs': [ |
| 28 '..', | 45 '..', |
| 29 ], | 46 ], |
| 30 'dependencies': [ | 47 'dependencies': [ |
| 31 '../base/base.gyp:base', | 48 '../base/base.gyp:base', |
| 32 '../net/net.gyp:net', | 49 '../net/net.gyp:net', |
| 33 '../testing/gtest.gyp:gtest', | 50 '../testing/gtest.gyp:gtest', |
| 34 'cast_certificate', | 51 'cast_certificate', |
| 35 ], | 52 ], |
| 36 'sources': [ | 53 'sources': [ |
| 37 'cast_certificate/cast_cert_validator_test_helpers.cc', | 54 'cast_certificate/cast_cert_validator_test_helpers.cc', |
| 38 'cast_certificate/cast_cert_validator_test_helpers.h', | 55 'cast_certificate/cast_cert_validator_test_helpers.h', |
| 39 ], | 56 ], |
| 40 }, | 57 }, |
| 41 ], | 58 ], |
| 42 } | 59 } |
| OLD | NEW |