| 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', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 { | 58 { |
| 59 # GN version: //components/safe_browsing_db:safe_browsing_db_mobile | 59 # GN version: //components/safe_browsing_db:safe_browsing_db_mobile |
| 60 'target_name': 'safe_browsing_db_mobile', | 60 'target_name': 'safe_browsing_db_mobile', |
| 61 'type': 'static_library', | 61 'type': 'static_library', |
| 62 'dependencies': [ | 62 'dependencies': [ |
| 63 ':safe_browsing_db_shared', | 63 ':safe_browsing_db_shared', |
| 64 ':safe_browsing_metadata_proto', | 64 ':safe_browsing_metadata_proto', |
| 65 ], | 65 ], |
| 66 'sources': [ | 66 'sources': [ |
| 67 # Note: sources list duplicated in GN build. | 67 # Note: sources list duplicated in GN build. |
| 68 'safe_browsing_db/remote_database_managerh', | 68 'safe_browsing_db/remote_database_manager.h', |
| 69 'safe_browsing_db/remote_database_manager.cc', | 69 'safe_browsing_db/remote_database_manager.cc', |
| 70 'safe_browsing_db/safe_browsing_api_handler.h', | 70 'safe_browsing_db/safe_browsing_api_handler.h', |
| 71 'safe_browsing_db/safe_browsing_api_handler.cc', | 71 'safe_browsing_db/safe_browsing_api_handler.cc', |
| 72 'safe_browsing_db/safe_browsing_api_handler_util.h', | 72 'safe_browsing_db/safe_browsing_api_handler_util.h', |
| 73 'safe_browsing_db/safe_browsing_api_handler_util.cc', | 73 'safe_browsing_db/safe_browsing_api_handler_util.cc', |
| 74 ], | 74 ], |
| 75 'include_dirs': [ | 75 'include_dirs': [ |
| 76 '..', | 76 '..', |
| 77 ], | 77 ], |
| 78 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 78 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 # Note: sources list duplicated in GN build. | 115 # Note: sources list duplicated in GN build. |
| 116 'safe_browsing_db/test_database_manager.h', | 116 'safe_browsing_db/test_database_manager.h', |
| 117 'safe_browsing_db/test_database_manager.cc', | 117 'safe_browsing_db/test_database_manager.cc', |
| 118 ], | 118 ], |
| 119 'include_dirs': [ | 119 'include_dirs': [ |
| 120 '..', | 120 '..', |
| 121 ], | 121 ], |
| 122 }, | 122 }, |
| 123 ], | 123 ], |
| 124 } | 124 } |
| OLD | NEW |