| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "//ios/chrome/test:test_support", | 110 "//ios/chrome/test:test_support", |
| 111 "//ios/testing:ocmock_support", | 111 "//ios/testing:ocmock_support", |
| 112 "//ios/web", | 112 "//ios/web", |
| 113 "//ios/web:test_support", | 113 "//ios/web:test_support", |
| 114 "//net", | 114 "//net", |
| 115 "//net:test_support", | 115 "//net:test_support", |
| 116 "//testing/gmock", | 116 "//testing/gmock", |
| 117 "//testing/gtest", | 117 "//testing/gtest", |
| 118 "//third_party/ocmock", | 118 "//third_party/ocmock", |
| 119 "//ui/base", | 119 "//ui/base", |
| 120 "//ui/base:test_support", |
| 120 "//url", | 121 "//url", |
| 121 ] | 122 ] |
| 122 } | 123 } |
| 123 | 124 |
| 124 bundle_data_ib_file("native_content_controller_test_xib") { | 125 bundle_data_ib_file("native_content_controller_test_xib") { |
| 125 visibility = [ ":unit_tests" ] | 126 visibility = [ ":unit_tests" ] |
| 126 testonly = true | 127 testonly = true |
| 127 source = "native_content_controller_test.xib" | 128 source = "native_content_controller_test.xib" |
| 128 } | 129 } |
| 129 | 130 |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 "//ios/chrome/browser/tabs:tabs_internal", | 418 "//ios/chrome/browser/tabs:tabs_internal", |
| 418 "//ios/chrome/browser/ui/omnibox:omnibox_internal", | 419 "//ios/chrome/browser/ui/omnibox:omnibox_internal", |
| 419 "//ios/chrome/browser/ui/toolbar", | 420 "//ios/chrome/browser/ui/toolbar", |
| 420 "//ios/chrome/test/base:perf_test_support", | 421 "//ios/chrome/test/base:perf_test_support", |
| 421 "//testing/gtest", | 422 "//testing/gtest", |
| 422 "//third_party/ocmock", | 423 "//third_party/ocmock", |
| 423 "//ui/base:test_support", | 424 "//ui/base:test_support", |
| 424 ] | 425 ] |
| 425 libs = [ "UIKit.framework" ] | 426 libs = [ "UIKit.framework" ] |
| 426 } | 427 } |
| OLD | NEW |