| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "history_search_view_controller_unittest.mm", | 100 "history_search_view_controller_unittest.mm", |
| 101 "history_util_unittest.mm", | 101 "history_util_unittest.mm", |
| 102 "tab_history_popup_controller_unittest.mm", | 102 "tab_history_popup_controller_unittest.mm", |
| 103 ] | 103 ] |
| 104 deps = [ | 104 deps = [ |
| 105 ":history", | 105 ":history", |
| 106 ":resources_unit_tests", | 106 ":resources_unit_tests", |
| 107 "//base", | 107 "//base", |
| 108 "//base/test:test_support", | 108 "//base/test:test_support", |
| 109 "//components/favicon/core", | 109 "//components/favicon/core", |
| 110 "//components/favicon/core/test:test_support", |
| 110 "//components/favicon_base", | 111 "//components/favicon_base", |
| 111 "//components/history/core/browser", | 112 "//components/history/core/browser", |
| 112 "//components/keyed_service/core", | 113 "//components/keyed_service/core", |
| 113 "//components/sessions", | 114 "//components/sessions", |
| 114 "//components/strings", | 115 "//components/strings", |
| 115 "//ios/chrome/app/strings", | 116 "//ios/chrome/app/strings", |
| 116 "//ios/chrome/browser", | 117 "//ios/chrome/browser", |
| 117 "//ios/chrome/browser/browser_state:test_support", | 118 "//ios/chrome/browser/browser_state:test_support", |
| 118 "//ios/chrome/browser/history", | 119 "//ios/chrome/browser/history", |
| 119 "//ios/chrome/browser/signin", | 120 "//ios/chrome/browser/signin", |
| 120 "//ios/chrome/browser/signin:test_support", | 121 "//ios/chrome/browser/signin:test_support", |
| 121 "//ios/chrome/browser/ui", | 122 "//ios/chrome/browser/ui", |
| 122 "//ios/chrome/browser/ui/collection_view", | 123 "//ios/chrome/browser/ui/collection_view", |
| 123 "//ios/chrome/browser/ui/util", | 124 "//ios/chrome/browser/ui/util", |
| 124 "//ios/chrome/common", | 125 "//ios/chrome/common", |
| 125 "//ios/chrome/test:test_support", | 126 "//ios/chrome/test:test_support", |
| 126 "//ios/web", | 127 "//ios/web", |
| 127 "//ios/web:test_support", | 128 "//ios/web:test_support", |
| 128 "//skia", | 129 "//skia", |
| 130 "//testing/gmock", |
| 129 "//testing/gtest", | 131 "//testing/gtest", |
| 130 "//third_party/ocmock", | 132 "//third_party/ocmock", |
| 131 "//ui/base", | 133 "//ui/base", |
| 132 "//ui/gfx", | 134 "//ui/gfx", |
| 133 "//url", | 135 "//url", |
| 134 ] | 136 ] |
| 135 | 137 |
| 136 public_deps = [ | 138 public_deps = [ |
| 137 ":unit_tests_arc", | 139 ":unit_tests_arc", |
| 138 ] | 140 ] |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "//ios/third_party/earl_grey", | 225 "//ios/third_party/earl_grey", |
| 224 "//ios/web:test_support", | 226 "//ios/web:test_support", |
| 225 "//net", | 227 "//net", |
| 226 "//ui/base", | 228 "//ui/base", |
| 227 ] | 229 ] |
| 228 libs = [ | 230 libs = [ |
| 229 "UIKit.framework", | 231 "UIKit.framework", |
| 230 "XCTest.framework", | 232 "XCTest.framework", |
| 231 ] | 233 ] |
| 232 } | 234 } |
| OLD | NEW |