| 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 import("//build/config/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
| 6 | 6 |
| 7 source_set("ui") { | 7 source_set("ui") { |
| 8 sources = [ | 8 sources = [ |
| 9 "UIView+SizeClassSupport.h", | 9 "UIView+SizeClassSupport.h", |
| 10 "UIView+SizeClassSupport.mm", | 10 "UIView+SizeClassSupport.mm", |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "preload_controller.mm", | 231 "preload_controller.mm", |
| 232 "preload_controller_delegate.h", | 232 "preload_controller_delegate.h", |
| 233 "prerender_delegate.h", | 233 "prerender_delegate.h", |
| 234 ] | 234 ] |
| 235 deps = [ | 235 deps = [ |
| 236 ":resources", | 236 ":resources", |
| 237 ":ui", | 237 ":ui", |
| 238 "//base", | 238 "//base", |
| 239 "//base:i18n", | 239 "//base:i18n", |
| 240 "//components/bookmarks/browser", | 240 "//components/bookmarks/browser", |
| 241 "//components/image_fetcher/ios", |
| 241 "//components/infobars/core", | 242 "//components/infobars/core", |
| 242 "//components/prefs", | 243 "//components/prefs", |
| 243 "//components/reading_list/core", | 244 "//components/reading_list/core", |
| 244 "//components/reading_list/ios", | 245 "//components/reading_list/ios", |
| 245 "//components/search_engines", | 246 "//components/search_engines", |
| 246 "//components/sessions", | 247 "//components/sessions", |
| 247 "//components/strings", | 248 "//components/strings", |
| 248 "//components/toolbar", | 249 "//components/toolbar", |
| 249 "//components/url_formatter", | 250 "//components/url_formatter", |
| 250 "//ios/chrome/app:tests_hook", | 251 "//ios/chrome/app:tests_hook", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 "//ios/chrome/browser/upgrade", | 304 "//ios/chrome/browser/upgrade", |
| 304 "//ios/chrome/browser/web", | 305 "//ios/chrome/browser/web", |
| 305 "//ios/chrome/browser/web:web_internal", | 306 "//ios/chrome/browser/web:web_internal", |
| 306 "//ios/chrome/common", | 307 "//ios/chrome/common", |
| 307 "//ios/net", | 308 "//ios/net", |
| 308 "//ios/public/provider/chrome/browser", | 309 "//ios/public/provider/chrome/browser", |
| 309 "//ios/public/provider/chrome/browser/ui", | 310 "//ios/public/provider/chrome/browser/ui", |
| 310 "//ios/public/provider/chrome/browser/voice", | 311 "//ios/public/provider/chrome/browser/voice", |
| 311 "//ios/third_party/material_components_ios", | 312 "//ios/third_party/material_components_ios", |
| 312 "//ios/web", | 313 "//ios/web", |
| 313 "//ios/web/public/image_fetcher", | |
| 314 "//net", | 314 "//net", |
| 315 "//third_party/google_toolbox_for_mac", | 315 "//third_party/google_toolbox_for_mac", |
| 316 "//ui/base", | 316 "//ui/base", |
| 317 "//ui/gfx", | 317 "//ui/gfx", |
| 318 "//url", | 318 "//url", |
| 319 ] | 319 ] |
| 320 public_deps = [ | 320 public_deps = [ |
| 321 "//ios/chrome/browser/ui/side_swipe", | 321 "//ios/chrome/browser/ui/side_swipe", |
| 322 "//ios/chrome/browser/ui/toolbar", | 322 "//ios/chrome/browser/ui/toolbar", |
| 323 ] | 323 ] |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 "//ios/chrome/browser/tabs:tabs_internal", | 419 "//ios/chrome/browser/tabs:tabs_internal", |
| 420 "//ios/chrome/browser/ui/omnibox:omnibox_internal", | 420 "//ios/chrome/browser/ui/omnibox:omnibox_internal", |
| 421 "//ios/chrome/browser/ui/toolbar", | 421 "//ios/chrome/browser/ui/toolbar", |
| 422 "//ios/chrome/test/base:perf_test_support", | 422 "//ios/chrome/test/base:perf_test_support", |
| 423 "//testing/gtest", | 423 "//testing/gtest", |
| 424 "//third_party/ocmock", | 424 "//third_party/ocmock", |
| 425 "//ui/base:test_support", | 425 "//ui/base:test_support", |
| 426 ] | 426 ] |
| 427 libs = [ "UIKit.framework" ] | 427 libs = [ "UIKit.framework" ] |
| 428 } | 428 } |
| OLD | NEW |