| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 static_library("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "delete_directive_handler.cc", | 7 "delete_directive_handler.cc", |
| 8 "delete_directive_handler.h", | 8 "delete_directive_handler.h", |
| 9 "download_constants.h", | 9 "download_constants.h", |
| 10 "download_database.cc", | 10 "download_database.cc", |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 } | 185 } |
| 186 | 186 |
| 187 source_set("unit_tests") { | 187 source_set("unit_tests") { |
| 188 testonly = true | 188 testonly = true |
| 189 sources = [ | 189 sources = [ |
| 190 "download_slice_info_unittest.cc", | 190 "download_slice_info_unittest.cc", |
| 191 "expire_history_backend_unittest.cc", | 191 "expire_history_backend_unittest.cc", |
| 192 "history_backend_db_unittest.cc", | 192 "history_backend_db_unittest.cc", |
| 193 "history_backend_unittest.cc", | 193 "history_backend_unittest.cc", |
| 194 "history_database_unittest.cc", | 194 "history_database_unittest.cc", |
| 195 "history_model_worker_unittest.cc", |
| 195 "history_querying_unittest.cc", | 196 "history_querying_unittest.cc", |
| 196 "history_service_unittest.cc", | 197 "history_service_unittest.cc", |
| 197 "history_types_unittest.cc", | 198 "history_types_unittest.cc", |
| 198 "thumbnail_database_unittest.cc", | 199 "thumbnail_database_unittest.cc", |
| 199 "top_sites_cache_unittest.cc", | 200 "top_sites_cache_unittest.cc", |
| 200 "top_sites_database_unittest.cc", | 201 "top_sites_database_unittest.cc", |
| 201 "top_sites_impl_unittest.cc", | 202 "top_sites_impl_unittest.cc", |
| 202 "typed_url_sync_metadata_database_unittest.cc", | 203 "typed_url_sync_metadata_database_unittest.cc", |
| 203 "typed_url_syncable_service_unittest.cc", | 204 "typed_url_syncable_service_unittest.cc", |
| 204 "url_database_unittest.cc", | 205 "url_database_unittest.cc", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 224 "//sql:test_support", | 225 "//sql:test_support", |
| 225 "//testing/gtest", | 226 "//testing/gtest", |
| 226 "//ui/gfx", | 227 "//ui/gfx", |
| 227 "//ui/gfx:test_support", | 228 "//ui/gfx:test_support", |
| 228 "//url", | 229 "//url", |
| 229 ] | 230 ] |
| 230 if (is_android) { | 231 if (is_android) { |
| 231 sources += [ "android/android_history_types_unittest.cc" ] | 232 sources += [ "android/android_history_types_unittest.cc" ] |
| 232 } | 233 } |
| 233 } | 234 } |
| OLD | NEW |