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