| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 source_set("history") { | 5 source_set("history") { |
| 6 sources = [ | 6 sources = [ |
| 7 "clear_browsing_bar.h", | 7 "clear_browsing_bar.h", |
| 8 "clear_browsing_bar.mm", | 8 "clear_browsing_bar.mm", |
| 9 "favicon_view.h", | 9 "favicon_view.h", |
| 10 "favicon_view.mm", | 10 "favicon_view.mm", |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 sources = [ | 151 sources = [ |
| 152 "history_ui_egtest.mm", | 152 "history_ui_egtest.mm", |
| 153 "tab_history_popup_controller_egtest.mm", | 153 "tab_history_popup_controller_egtest.mm", |
| 154 ] | 154 ] |
| 155 deps = [ | 155 deps = [ |
| 156 "//base", | 156 "//base", |
| 157 "//components/browsing_data/core", | 157 "//components/browsing_data/core", |
| 158 "//components/prefs", | 158 "//components/prefs", |
| 159 "//components/strings", | 159 "//components/strings", |
| 160 "//ios/chrome/app/strings", | 160 "//ios/chrome/app/strings", |
| 161 "//ios/chrome/browser", |
| 161 "//ios/chrome/browser/browser_state", | 162 "//ios/chrome/browser/browser_state", |
| 162 "//ios/chrome/browser/ui/history", | 163 "//ios/chrome/browser/ui/history", |
| 163 "//ios/chrome/browser/ui/settings", | 164 "//ios/chrome/browser/ui/settings", |
| 165 "//ios/chrome/browser/ui/tools_menu", |
| 166 "//ios/chrome/browser/ui/util", |
| 167 "//ios/chrome/common", |
| 164 "//ios/chrome/test/app:test_support", | 168 "//ios/chrome/test/app:test_support", |
| 165 "//ios/chrome/test/earl_grey:test_support", | 169 "//ios/chrome/test/earl_grey:test_support", |
| 170 "//ios/public/provider/chrome/browser/signin:signin", |
| 171 "//ios/public/provider/chrome/browser/signin:test_support", |
| 166 "//ios/testing:ios_test_support", | 172 "//ios/testing:ios_test_support", |
| 167 "//ios/third_party/earl_grey", | 173 "//ios/third_party/earl_grey", |
| 168 "//ios/web:test_support", | 174 "//ios/web:test_support", |
| 169 "//net", | 175 "//net", |
| 170 "//ui/base", | 176 "//ui/base", |
| 171 ] | 177 ] |
| 172 libs = [ | 178 libs = [ |
| 173 "UIKit.framework", | 179 "UIKit.framework", |
| 174 "XCTest.framework", | 180 "XCTest.framework", |
| 175 ] | 181 ] |
| 176 } | 182 } |
| OLD | NEW |