| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 "//ios/chrome/browser/ui/util", | 305 "//ios/chrome/browser/ui/util", |
| 306 "//ios/chrome/browser/ui/voice", | 306 "//ios/chrome/browser/ui/voice", |
| 307 "//ios/chrome/browser/upgrade", | 307 "//ios/chrome/browser/upgrade", |
| 308 "//ios/chrome/browser/web", | 308 "//ios/chrome/browser/web", |
| 309 "//ios/chrome/browser/web:web_internal", | 309 "//ios/chrome/browser/web:web_internal", |
| 310 "//ios/chrome/common", | 310 "//ios/chrome/common", |
| 311 "//ios/net", | 311 "//ios/net", |
| 312 "//ios/public/provider/chrome/browser", | 312 "//ios/public/provider/chrome/browser", |
| 313 "//ios/public/provider/chrome/browser/ui", | 313 "//ios/public/provider/chrome/browser/ui", |
| 314 "//ios/public/provider/chrome/browser/voice", | 314 "//ios/public/provider/chrome/browser/voice", |
| 315 "//ios/shared/chrome/browser/tabs", |
| 315 "//ios/third_party/material_components_ios", | 316 "//ios/third_party/material_components_ios", |
| 316 "//ios/web", | 317 "//ios/web", |
| 317 "//ios/web:user_agent", | 318 "//ios/web:user_agent", |
| 318 "//net", | 319 "//net", |
| 319 "//third_party/google_toolbox_for_mac", | 320 "//third_party/google_toolbox_for_mac", |
| 320 "//ui/base", | 321 "//ui/base", |
| 321 "//ui/gfx", | 322 "//ui/gfx", |
| 322 "//url", | 323 "//url", |
| 323 ] | 324 ] |
| 324 public_deps = [ | 325 public_deps = [ |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 "//ios/chrome/browser/tabs:tabs_internal", | 426 "//ios/chrome/browser/tabs:tabs_internal", |
| 426 "//ios/chrome/browser/ui/omnibox:omnibox_internal", | 427 "//ios/chrome/browser/ui/omnibox:omnibox_internal", |
| 427 "//ios/chrome/browser/ui/toolbar", | 428 "//ios/chrome/browser/ui/toolbar", |
| 428 "//ios/chrome/test/base:perf_test_support", | 429 "//ios/chrome/test/base:perf_test_support", |
| 429 "//testing/gtest", | 430 "//testing/gtest", |
| 430 "//third_party/ocmock", | 431 "//third_party/ocmock", |
| 431 "//ui/base:test_support", | 432 "//ui/base:test_support", |
| 432 ] | 433 ] |
| 433 libs = [ "UIKit.framework" ] | 434 libs = [ "UIKit.framework" ] |
| 434 } | 435 } |
| OLD | NEW |