| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 "PassKit.framework", | 342 "PassKit.framework", |
| 343 "Photos.framework", | 343 "Photos.framework", |
| 344 "QuartzCore.framework", | 344 "QuartzCore.framework", |
| 345 "StoreKit.framework", | 345 "StoreKit.framework", |
| 346 "UIKit.framework", | 346 "UIKit.framework", |
| 347 "WebKit.framework", | 347 "WebKit.framework", |
| 348 ] | 348 ] |
| 349 } | 349 } |
| 350 | 350 |
| 351 source_set("test_support") { | 351 source_set("test_support") { |
| 352 configs += [ "//build/config/compiler:enable_arc" ] |
| 352 testonly = true | 353 testonly = true |
| 353 sources = [ | 354 sources = [ |
| 354 "browser_view_controller_testing.h", | 355 "browser_view_controller_testing.h", |
| 355 "browser_view_controller_testing.mm", | 356 "browser_view_controller_testing.mm", |
| 356 ] | 357 ] |
| 357 deps = [ | 358 deps = [ |
| 358 ":ui_internal", | 359 ":ui_internal", |
| 359 "//ios/chrome/browser/ui/toolbar", | 360 "//ios/chrome/browser/ui/toolbar", |
| 360 "//ios/chrome/browser/ui/toolbar:test_support", | 361 "//ios/chrome/browser/ui/toolbar:test_support", |
| 361 ] | 362 ] |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 "//ios/chrome/test/base:perf_test_support", | 430 "//ios/chrome/test/base:perf_test_support", |
| 430 "//ios/shared/chrome/browser/tabs", | 431 "//ios/shared/chrome/browser/tabs", |
| 431 "//ios/shared/chrome/browser/tabs:test_support", | 432 "//ios/shared/chrome/browser/tabs:test_support", |
| 432 "//ios/web:test_support", | 433 "//ios/web:test_support", |
| 433 "//testing/gtest", | 434 "//testing/gtest", |
| 434 "//third_party/ocmock", | 435 "//third_party/ocmock", |
| 435 "//ui/base:test_support", | 436 "//ui/base:test_support", |
| 436 ] | 437 ] |
| 437 libs = [ "UIKit.framework" ] | 438 libs = [ "UIKit.framework" ] |
| 438 } | 439 } |
| OLD | NEW |