OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/safe_browsing_db:safe_browsing_db_shared | 8 # GN version: //components/safe_browsing_db:safe_browsing_db_shared |
9 'target_name': 'safe_browsing_db_shared', | 9 'target_name': 'safe_browsing_db_shared', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'dependencies': [ | 11 'dependencies': [ |
12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
13 '../components/components.gyp:metrics', | 13 '../components/components.gyp:metrics', |
14 '../crypto/crypto.gyp:crypto', | 14 '../crypto/crypto.gyp:crypto', |
15 ':safebrowsing_proto', | 15 ':safebrowsing_proto', |
16 ], | 16 ], |
17 'sources': [ | 17 'sources': [ |
18 # Note: sources list duplicated in GN build. | 18 # Note: sources list duplicated in GN build. |
19 'safe_browsing_db/database_manager.h', | 19 'safe_browsing_db/database_manager.h', |
20 'safe_browsing_db/database_manager.cc', | 20 'safe_browsing_db/database_manager.cc', |
21 'safe_browsing_db/hit_report.h', | 21 'safe_browsing_db/hit_report.h', |
22 'safe_browsing_db/hit_report.cc', | 22 'safe_browsing_db/hit_report.cc', |
23 'safe_browsing_db/prefix_set.h', | 23 'safe_browsing_db/prefix_set.h', |
24 'safe_browsing_db/prefix_set.cc', | 24 'safe_browsing_db/prefix_set.cc', |
25 'safe_browsing_db/util.h', | 25 'safe_browsing_db/util.h', |
26 'safe_browsing_db/util.cc', | 26 'safe_browsing_db/util.cc', |
| 27 'safe_browsing_db/v4_protocol_manager.h', |
| 28 'safe_browsing_db/v4_protocol_manager.cc', |
27 ], | 29 ], |
28 'include_dirs': [ | 30 'include_dirs': [ |
29 '..', | 31 '..', |
30 ], | 32 ], |
31 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 33 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
32 'msvs_disabled_warnings': [4267, ], | 34 'msvs_disabled_warnings': [4267, ], |
33 }, | 35 }, |
34 { | 36 { |
35 # GN version: //components/safe_browsing_db | 37 # GN version: //components/safe_browsing_db |
36 'target_name': 'safe_browsing_db', | 38 'target_name': 'safe_browsing_db', |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 # Note: sources list duplicated in GN build. | 108 # Note: sources list duplicated in GN build. |
107 'safe_browsing_db/test_database_manager.h', | 109 'safe_browsing_db/test_database_manager.h', |
108 'safe_browsing_db/test_database_manager.cc', | 110 'safe_browsing_db/test_database_manager.cc', |
109 ], | 111 ], |
110 'include_dirs': [ | 112 'include_dirs': [ |
111 '..', | 113 '..', |
112 ], | 114 ], |
113 }, | 115 }, |
114 ], | 116 ], |
115 } | 117 } |
OLD | NEW |