| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 "//components/history/core/browser", | 159 "//components/history/core/browser", |
| 160 "//components/keyed_service/core", | 160 "//components/keyed_service/core", |
| 161 "//components/sessions", | 161 "//components/sessions", |
| 162 "//components/strings", | 162 "//components/strings", |
| 163 "//ios/chrome/app/strings", | 163 "//ios/chrome/app/strings", |
| 164 "//ios/chrome/browser", | 164 "//ios/chrome/browser", |
| 165 "//ios/chrome/browser/browser_state:test_support", | 165 "//ios/chrome/browser/browser_state:test_support", |
| 166 "//ios/chrome/browser/history", | 166 "//ios/chrome/browser/history", |
| 167 "//ios/chrome/browser/signin", | 167 "//ios/chrome/browser/signin", |
| 168 "//ios/chrome/browser/signin:test_support", | 168 "//ios/chrome/browser/signin:test_support", |
| 169 "//ios/chrome/browser/sync:sync", |
| 170 "//ios/chrome/browser/sync:test_support", |
| 169 "//ios/chrome/browser/ui", | 171 "//ios/chrome/browser/ui", |
| 170 "//ios/chrome/browser/ui/collection_view", | 172 "//ios/chrome/browser/ui/collection_view", |
| 171 "//ios/chrome/browser/ui/util", | 173 "//ios/chrome/browser/ui/util", |
| 172 "//ios/chrome/common", | 174 "//ios/chrome/common", |
| 173 "//ios/chrome/test:test_support", | 175 "//ios/chrome/test:test_support", |
| 174 "//ios/web", | 176 "//ios/web", |
| 175 "//ios/web:test_support", | 177 "//ios/web:test_support", |
| 176 "//skia", | 178 "//skia", |
| 179 "//testing/gmock", |
| 177 "//testing/gtest", | 180 "//testing/gtest", |
| 178 "//third_party/ocmock", | 181 "//third_party/ocmock", |
| 179 "//ui/base", | 182 "//ui/base", |
| 180 "//ui/gfx", | 183 "//ui/gfx", |
| 181 "//url", | 184 "//url", |
| 182 ] | 185 ] |
| 183 } | 186 } |
| 184 | 187 |
| 185 bundle_data("resources_unit_tests") { | 188 bundle_data("resources_unit_tests") { |
| 186 visibility = [ | 189 visibility = [ |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 "//ios/third_party/earl_grey", | 229 "//ios/third_party/earl_grey", |
| 227 "//ios/web:test_support", | 230 "//ios/web:test_support", |
| 228 "//net", | 231 "//net", |
| 229 "//ui/base", | 232 "//ui/base", |
| 230 ] | 233 ] |
| 231 libs = [ | 234 libs = [ |
| 232 "UIKit.framework", | 235 "UIKit.framework", |
| 233 "XCTest.framework", | 236 "XCTest.framework", |
| 234 ] | 237 ] |
| 235 } | 238 } |
| OLD | NEW |