| 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", |
| 11 "download_database.h", | 11 "download_database.h", |
| 12 "download_job_info.cc", |
| 13 "download_job_info.h", |
| 12 "download_row.cc", | 14 "download_row.cc", |
| 13 "download_row.h", | 15 "download_row.h", |
| 14 "download_types.cc", | 16 "download_types.cc", |
| 15 "download_types.h", | 17 "download_types.h", |
| 16 "expire_history_backend.cc", | 18 "expire_history_backend.cc", |
| 17 "expire_history_backend.h", | 19 "expire_history_backend.h", |
| 18 "history_backend.cc", | 20 "history_backend.cc", |
| 19 "history_backend.h", | 21 "history_backend.h", |
| 20 "history_backend_client.h", | 22 "history_backend_client.h", |
| 21 "history_backend_notifier.h", | 23 "history_backend_notifier.h", |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 ] | 174 ] |
| 173 outputs = [ | 175 outputs = [ |
| 174 "{{bundle_resources_dir}}/" + | 176 "{{bundle_resources_dir}}/" + |
| 175 "{{source_root_relative_dir}}/{{source_file_part}}", | 177 "{{source_root_relative_dir}}/{{source_file_part}}", |
| 176 ] | 178 ] |
| 177 } | 179 } |
| 178 | 180 |
| 179 source_set("unit_tests") { | 181 source_set("unit_tests") { |
| 180 testonly = true | 182 testonly = true |
| 181 sources = [ | 183 sources = [ |
| 184 "download_job_info_unittest.cc", |
| 182 "expire_history_backend_unittest.cc", | 185 "expire_history_backend_unittest.cc", |
| 183 "history_backend_db_unittest.cc", | 186 "history_backend_db_unittest.cc", |
| 184 "history_backend_unittest.cc", | 187 "history_backend_unittest.cc", |
| 185 "history_database_unittest.cc", | 188 "history_database_unittest.cc", |
| 186 "history_querying_unittest.cc", | 189 "history_querying_unittest.cc", |
| 187 "history_service_unittest.cc", | 190 "history_service_unittest.cc", |
| 188 "history_types_unittest.cc", | 191 "history_types_unittest.cc", |
| 189 "thumbnail_database_unittest.cc", | 192 "thumbnail_database_unittest.cc", |
| 190 "top_sites_cache_unittest.cc", | 193 "top_sites_cache_unittest.cc", |
| 191 "top_sites_database_unittest.cc", | 194 "top_sites_database_unittest.cc", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 214 "//sql:test_support", | 217 "//sql:test_support", |
| 215 "//testing/gtest", | 218 "//testing/gtest", |
| 216 "//ui/gfx", | 219 "//ui/gfx", |
| 217 "//ui/gfx:test_support", | 220 "//ui/gfx:test_support", |
| 218 "//url", | 221 "//url", |
| 219 ] | 222 ] |
| 220 if (is_android) { | 223 if (is_android) { |
| 221 sources += [ "android/android_history_types_unittest.cc" ] | 224 sources += [ "android/android_history_types_unittest.cc" ] |
| 222 } | 225 } |
| 223 } | 226 } |
| OLD | NEW |