| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 static_library("core") { | 9 static_library("core") { |
| 10 sources = [ | 10 sources = [ |
| 11 "archive_manager.cc", | 11 "archive_manager.cc", |
| 12 "archive_manager.h", | 12 "archive_manager.h", |
| 13 "client_id.cc", |
| 14 "client_id.h", |
| 13 "client_namespace_constants.cc", | 15 "client_namespace_constants.cc", |
| 14 "client_namespace_constants.h", | 16 "client_namespace_constants.h", |
| 15 "client_policy_controller.cc", | 17 "client_policy_controller.cc", |
| 16 "client_policy_controller.h", | 18 "client_policy_controller.h", |
| 17 "offline_event_logger.cc", | 19 "offline_event_logger.cc", |
| 18 "offline_event_logger.h", | 20 "offline_event_logger.h", |
| 19 "offline_page_archiver.h", | 21 "offline_page_archiver.h", |
| 20 "offline_page_client_policy.h", | 22 "offline_page_client_policy.h", |
| 21 "offline_page_item.cc", | 23 "offline_page_item.cc", |
| 22 "offline_page_item.h", | 24 "offline_page_item.h", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 sources = [ | 125 sources = [ |
| 124 "background/request_notifier.h", | 126 "background/request_notifier.h", |
| 125 "background/request_queue_results.h", | 127 "background/request_queue_results.h", |
| 126 "background/save_page_request.h", | 128 "background/save_page_request.h", |
| 127 "downloads/download_ui_item.h", | 129 "downloads/download_ui_item.h", |
| 128 "offline_page_types.h", | 130 "offline_page_types.h", |
| 129 "offline_store_types.h", | 131 "offline_store_types.h", |
| 130 ] | 132 ] |
| 131 } | 133 } |
| 132 } | 134 } |
| OLD | NEW |