| 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 "browser_view_controller_dependency_factory.mm", | 336 "browser_view_controller_dependency_factory.mm", |
| 337 ] | 337 ] |
| 338 deps = [ | 338 deps = [ |
| 339 ":resources", | 339 ":resources", |
| 340 ":ui", | 340 ":ui", |
| 341 "//base", | 341 "//base", |
| 342 "//base:i18n", | 342 "//base:i18n", |
| 343 "//components/bookmarks/browser", | 343 "//components/bookmarks/browser", |
| 344 "//components/image_fetcher/ios", | 344 "//components/image_fetcher/ios", |
| 345 "//components/infobars/core", | 345 "//components/infobars/core", |
| 346 "//components/payments/core", |
| 346 "//components/prefs", | 347 "//components/prefs", |
| 347 "//components/reading_list/core", | 348 "//components/reading_list/core", |
| 348 "//components/search_engines", | 349 "//components/search_engines", |
| 349 "//components/sessions", | 350 "//components/sessions", |
| 350 "//components/strings", | 351 "//components/strings", |
| 351 "//components/toolbar", | 352 "//components/toolbar", |
| 352 "//components/url_formatter", | 353 "//components/url_formatter", |
| 353 "//ios/chrome/app:tests_hook", | 354 "//ios/chrome/app:tests_hook", |
| 354 "//ios/chrome/app/strings", | 355 "//ios/chrome/app/strings", |
| 355 "//ios/chrome/browser", | 356 "//ios/chrome/browser", |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 "//ios/chrome/browser/web_state_list", | 556 "//ios/chrome/browser/web_state_list", |
| 556 "//ios/chrome/browser/web_state_list:test_support", | 557 "//ios/chrome/browser/web_state_list:test_support", |
| 557 "//ios/chrome/test/base:perf_test_support", | 558 "//ios/chrome/test/base:perf_test_support", |
| 558 "//ios/web/public/test/fakes", | 559 "//ios/web/public/test/fakes", |
| 559 "//testing/gtest", | 560 "//testing/gtest", |
| 560 "//third_party/ocmock", | 561 "//third_party/ocmock", |
| 561 "//ui/base:test_support", | 562 "//ui/base:test_support", |
| 562 ] | 563 ] |
| 563 libs = [ "UIKit.framework" ] | 564 libs = [ "UIKit.framework" ] |
| 564 } | 565 } |
| OLD | NEW |