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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "top_sites_backend.h", | 59 "top_sites_backend.h", |
60 "top_sites_cache.cc", | 60 "top_sites_cache.cc", |
61 "top_sites_cache.h", | 61 "top_sites_cache.h", |
62 "top_sites_database.cc", | 62 "top_sites_database.cc", |
63 "top_sites_database.h", | 63 "top_sites_database.h", |
64 "top_sites_impl.cc", | 64 "top_sites_impl.cc", |
65 "top_sites_impl.h", | 65 "top_sites_impl.h", |
66 "top_sites_observer.h", | 66 "top_sites_observer.h", |
67 "typed_url_data_type_controller.cc", | 67 "typed_url_data_type_controller.cc", |
68 "typed_url_data_type_controller.h", | 68 "typed_url_data_type_controller.h", |
| 69 "typed_url_sync_bridge.cc", |
| 70 "typed_url_sync_bridge.h", |
69 "typed_url_sync_metadata_database.cc", | 71 "typed_url_sync_metadata_database.cc", |
70 "typed_url_sync_metadata_database.h", | 72 "typed_url_sync_metadata_database.h", |
71 "typed_url_syncable_service.cc", | 73 "typed_url_syncable_service.cc", |
72 "typed_url_syncable_service.h", | 74 "typed_url_syncable_service.h", |
73 "url_database.cc", | 75 "url_database.cc", |
74 "url_database.h", | 76 "url_database.h", |
75 "url_row.cc", | 77 "url_row.cc", |
76 "url_row.h", | 78 "url_row.h", |
77 "url_utils.cc", | 79 "url_utils.cc", |
78 "url_utils.h", | 80 "url_utils.h", |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 "//sql:test_support", | 224 "//sql:test_support", |
223 "//testing/gtest", | 225 "//testing/gtest", |
224 "//ui/gfx", | 226 "//ui/gfx", |
225 "//ui/gfx:test_support", | 227 "//ui/gfx:test_support", |
226 "//url", | 228 "//url", |
227 ] | 229 ] |
228 if (is_android) { | 230 if (is_android) { |
229 sources += [ "android/android_history_types_unittest.cc" ] | 231 sources += [ "android/android_history_types_unittest.cc" ] |
230 } | 232 } |
231 } | 233 } |
OLD | NEW |