| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("history") { |
| 6 sources = [ |
| 7 "browsing_history_handler.cc", |
| 8 "browsing_history_handler.h", |
| 9 "favicon_source.cc", |
| 10 "favicon_source.h", |
| 11 "history_ui.h", |
| 12 "history_ui.mm", |
| 13 "metrics_handler.cc", |
| 14 "metrics_handler.h", |
| 15 ] |
| 16 deps = [ |
| 17 "//base", |
| 18 "//base:i18n", |
| 19 "//components/bookmarks/browser", |
| 20 "//components/browser_sync", |
| 21 "//components/browsing_data/core", |
| 22 "//components/favicon/core", |
| 23 "//components/favicon_base", |
| 24 "//components/history/core/browser", |
| 25 "//components/keyed_service/core", |
| 26 "//components/prefs", |
| 27 "//components/resources", |
| 28 "//components/search", |
| 29 "//components/signin/core/browser", |
| 30 "//components/strings", |
| 31 "//components/sync", |
| 32 "//components/sync_sessions", |
| 33 "//components/url_formatter", |
| 34 "//ios/chrome/app/resources", |
| 35 "//ios/chrome/browser:browser_no_public_deps", |
| 36 "//ios/chrome/browser/bookmarks", |
| 37 "//ios/chrome/browser/browser_state", |
| 38 "//ios/chrome/browser/favicon", |
| 39 "//ios/chrome/browser/history", |
| 40 "//ios/chrome/browser/signin", |
| 41 "//ios/chrome/browser/signin", |
| 42 "//ios/chrome/browser/sync", |
| 43 "//ios/chrome/browser/ui", |
| 44 "//ios/web", |
| 45 "//net", |
| 46 "//ui/base", |
| 47 "//ui/gfx", |
| 48 "//ui/resources", |
| 49 "//url", |
| 50 ] |
| 51 } |
| OLD | NEW |