| 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 # GN version: //components/client_update_protocol | 8 'target_name': 'cast_certificate', |
| 9 'target_name': 'client_update_protocol', | |
| 10 'type': 'static_library', | 9 'type': 'static_library', |
| 11 'dependencies': [ | |
| 12 '../base/base.gyp:base', | |
| 13 '../crypto/crypto.gyp:crypto', | |
| 14 ], | |
| 15 | |
| 16 'include_dirs': [ | 10 'include_dirs': [ |
| 17 '..', | 11 '..', |
| 18 ], | 12 ], |
| 13 'dependencies': [ |
| 14 '../base/base.gyp:base', |
| 15 '../net/net.gyp:net', |
| 16 ], |
| 19 'sources': [ | 17 'sources': [ |
| 20 'client_update_protocol/ecdsa.h', | 18 'cast_certificate/cast_cert_validator.cc', |
| 21 'client_update_protocol/ecdsa.cc', | 19 'cast_certificate/cast_cert_validator.h', |
| 20 'cast_certificate/cast_root_ca_cert_der-inc.h', |
| 21 'cast_certificate/eureka_root_ca_der-inc.h', |
| 22 ], | 22 ], |
| 23 }, | 23 }, |
| 24 { | 24 { |
| 25 # GN version: //components/client_update_protocol:test_support | 25 'target_name': 'cast_certificate_test_support', |
| 26 'target_name': 'client_update_protocol_test_support', | |
| 27 'type': 'static_library', | 26 'type': 'static_library', |
| 28 'dependencies': [ | |
| 29 'update_client', | |
| 30 '../testing/gtest.gyp:gtest', | |
| 31 ], | |
| 32 | |
| 33 'include_dirs': [ | 27 'include_dirs': [ |
| 34 '..', | 28 '..', |
| 35 ], | 29 ], |
| 30 'dependencies': [ |
| 31 '../base/base.gyp:base', |
| 32 '../net/net.gyp:net', |
| 33 '../testing/gtest.gyp:gtest', |
| 34 'cast_certificate', |
| 35 ], |
| 36 'sources': [ | 36 'sources': [ |
| 37 'client_update_protocol/ecdsa_unittest.cc', | 37 'cast_certificate/cast_cert_validator_test_helpers.cc', |
| 38 'cast_certificate/cast_cert_validator_test_helpers.h', |
| 38 ], | 39 ], |
| 39 }, | 40 }, |
| 40 ], | 41 ], |
| 41 } | 42 } |
| OLD | NEW |