| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 "//sql:test_support", | 216 "//sql:test_support", |
| 215 "//testing/gtest", | 217 "//testing/gtest", |
| 216 "//ui/gfx", | 218 "//ui/gfx", |
| 217 "//ui/gfx:test_support", | 219 "//ui/gfx:test_support", |
| 218 "//url", | 220 "//url", |
| 219 ] | 221 ] |
| 220 if (is_android) { | 222 if (is_android) { |
| 221 sources += [ "android/android_history_types_unittest.cc" ] | 223 sources += [ "android/android_history_types_unittest.cc" ] |
| 222 } | 224 } |
| 223 } | 225 } |
| OLD | NEW |