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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 "visit_database.cc", | 75 "visit_database.cc", |
76 "visit_database.h", | 76 "visit_database.h", |
77 "visit_delegate.cc", | 77 "visit_delegate.cc", |
78 "visit_delegate.h", | 78 "visit_delegate.h", |
79 "visit_tracker.cc", | 79 "visit_tracker.cc", |
80 "visit_tracker.h", | 80 "visit_tracker.h", |
81 "visitsegment_database.cc", | 81 "visitsegment_database.cc", |
82 "visitsegment_database.h", | 82 "visitsegment_database.h", |
83 "web_history_service.cc", | 83 "web_history_service.cc", |
84 "web_history_service.h", | 84 "web_history_service.h", |
| 85 "web_history_service_observer.h", |
85 ] | 86 ] |
86 | 87 |
87 public_deps = [ | 88 public_deps = [ |
88 "//skia", | 89 "//skia", |
89 ] | 90 ] |
90 | 91 |
91 deps = [ | 92 deps = [ |
92 "//base", | 93 "//base", |
93 "//base:i18n", | 94 "//base:i18n", |
94 "//components/favicon_base", | 95 "//components/favicon_base", |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 "//sql:test_support", | 212 "//sql:test_support", |
212 "//testing/gtest", | 213 "//testing/gtest", |
213 "//ui/gfx", | 214 "//ui/gfx", |
214 "//ui/gfx:test_support", | 215 "//ui/gfx:test_support", |
215 "//url", | 216 "//url", |
216 ] | 217 ] |
217 if (is_android) { | 218 if (is_android) { |
218 sources += [ "android/android_history_types_unittest.cc" ] | 219 sources += [ "android/android_history_types_unittest.cc" ] |
219 } | 220 } |
220 } | 221 } |
OLD | NEW |