| 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 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "clear_browsing_bar.h", | 8 "clear_browsing_bar.h", |
| 9 "clear_browsing_bar.mm", | 9 "clear_browsing_bar.mm", |
| 10 "favicon_view.h", | 10 "favicon_view.h", |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 sources = [ | 203 sources = [ |
| 204 "history_ui_egtest.mm", | 204 "history_ui_egtest.mm", |
| 205 "tab_history_popup_controller_egtest.mm", | 205 "tab_history_popup_controller_egtest.mm", |
| 206 ] | 206 ] |
| 207 deps = [ | 207 deps = [ |
| 208 ":history", | 208 ":history", |
| 209 "//base", | 209 "//base", |
| 210 "//components/browsing_data/core", | 210 "//components/browsing_data/core", |
| 211 "//components/prefs", | 211 "//components/prefs", |
| 212 "//components/strings", | 212 "//components/strings", |
| 213 "//components/url_formatter:url_formatter", |
| 213 "//ios/chrome/app/strings", | 214 "//ios/chrome/app/strings", |
| 214 "//ios/chrome/browser", | 215 "//ios/chrome/browser", |
| 215 "//ios/chrome/browser/browser_state", | 216 "//ios/chrome/browser/browser_state", |
| 216 "//ios/chrome/browser/ui/settings", | 217 "//ios/chrome/browser/ui/settings", |
| 217 "//ios/chrome/browser/ui/tools_menu", | 218 "//ios/chrome/browser/ui/tools_menu", |
| 218 "//ios/chrome/browser/ui/util", | 219 "//ios/chrome/browser/ui/util", |
| 219 "//ios/chrome/common", | 220 "//ios/chrome/common", |
| 220 "//ios/chrome/test/app:test_support", | 221 "//ios/chrome/test/app:test_support", |
| 221 "//ios/chrome/test/earl_grey:test_support", | 222 "//ios/chrome/test/earl_grey:test_support", |
| 222 "//ios/public/provider/chrome/browser/signin", | 223 "//ios/public/provider/chrome/browser/signin", |
| 223 "//ios/public/provider/chrome/browser/signin:test_support", | 224 "//ios/public/provider/chrome/browser/signin:test_support", |
| 224 "//ios/testing:ios_test_support", | 225 "//ios/testing:ios_test_support", |
| 225 "//ios/third_party/earl_grey", | 226 "//ios/third_party/earl_grey", |
| 226 "//ios/web:test_support", | 227 "//ios/web:test_support", |
| 227 "//net", | 228 "//net", |
| 228 "//ui/base", | 229 "//ui/base", |
| 229 ] | 230 ] |
| 230 libs = [ | 231 libs = [ |
| 231 "UIKit.framework", | 232 "UIKit.framework", |
| 232 "XCTest.framework", | 233 "XCTest.framework", |
| 233 ] | 234 ] |
| 234 } | 235 } |
| OLD | NEW |