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