| 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 = [ |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 91 |
| 92 source_set("unit_tests") { | 92 source_set("unit_tests") { |
| 93 testonly = true | 93 testonly = true |
| 94 sources = [ | 94 sources = [ |
| 95 "archive_manager_unittest.cc", | 95 "archive_manager_unittest.cc", |
| 96 "client_policy_controller_unittest.cc", | 96 "client_policy_controller_unittest.cc", |
| 97 "offline_event_logger_unittest.cc", | 97 "offline_event_logger_unittest.cc", |
| 98 "offline_page_metadata_store_impl_unittest.cc", | 98 "offline_page_metadata_store_impl_unittest.cc", |
| 99 "offline_page_model_event_logger_unittest.cc", | 99 "offline_page_model_event_logger_unittest.cc", |
| 100 "offline_page_model_impl_unittest.cc", | 100 "offline_page_model_impl_unittest.cc", |
| 101 "offline_page_model_query_unittest.cc", |
| 101 "offline_page_storage_manager_unittest.cc", | 102 "offline_page_storage_manager_unittest.cc", |
| 102 "snapshot_controller_unittest.cc", | 103 "snapshot_controller_unittest.cc", |
| 103 "task_queue_unittest.cc", | 104 "task_queue_unittest.cc", |
| 104 "task_unittest.cc", | 105 "task_unittest.cc", |
| 105 ] | 106 ] |
| 106 | 107 |
| 107 deps = [ | 108 deps = [ |
| 108 ":core", | 109 ":core", |
| 109 ":switches", | 110 ":switches", |
| 110 ":test_support", | 111 ":test_support", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 122 sources = [ | 123 sources = [ |
| 123 "background/request_notifier.h", | 124 "background/request_notifier.h", |
| 124 "background/request_queue_results.h", | 125 "background/request_queue_results.h", |
| 125 "background/save_page_request.h", | 126 "background/save_page_request.h", |
| 126 "downloads/download_ui_item.h", | 127 "downloads/download_ui_item.h", |
| 127 "offline_page_types.h", | 128 "offline_page_types.h", |
| 128 "offline_store_types.h", | 129 "offline_store_types.h", |
| 129 ] | 130 ] |
| 130 } | 131 } |
| 131 } | 132 } |
| OLD | NEW |