| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 allow_circular_includes_from = [ "//ios/chrome/browser/ui/commands" ] | 52 allow_circular_includes_from = [ "//ios/chrome/browser/ui/commands" ] |
| 53 libs = [ | 53 libs = [ |
| 54 "Accelerate.framework", | 54 "Accelerate.framework", |
| 55 "CoreGraphics.framework", | 55 "CoreGraphics.framework", |
| 56 "QuartzCore.framework", | 56 "QuartzCore.framework", |
| 57 ] | 57 ] |
| 58 configs += [ "//build/config/compiler:enable_arc" ] | 58 configs += [ "//build/config/compiler:enable_arc" ] |
| 59 } | 59 } |
| 60 | 60 |
| 61 source_set("unit_tests") { | 61 source_set("unit_tests") { |
| 62 configs += [ "//build/config/compiler:enable_arc" ] |
| 62 testonly = true | 63 testonly = true |
| 63 sources = [ | 64 sources = [ |
| 64 "browser_container_view_unittest.mm", | 65 "browser_container_view_unittest.mm", |
| 65 "browser_view_controller_unittest.mm", | 66 "browser_view_controller_unittest.mm", |
| 66 "chrome_web_view_factory_unittest.mm", | 67 "chrome_web_view_factory_unittest.mm", |
| 67 "file_locations_unittest.mm", | 68 "file_locations_unittest.mm", |
| 68 "fullscreen_controller_unittest.mm", | 69 "fullscreen_controller_unittest.mm", |
| 69 "key_commands_provider_unittest.mm", | 70 "key_commands_provider_unittest.mm", |
| 70 "native_content_controller_unittest.mm", | 71 "native_content_controller_unittest.mm", |
| 71 "network_activity_indicator_manager_unittest.mm", | 72 "network_activity_indicator_manager_unittest.mm", |
| (...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 "//ios/chrome/browser/web_state_list", | 575 "//ios/chrome/browser/web_state_list", |
| 575 "//ios/chrome/browser/web_state_list:test_support", | 576 "//ios/chrome/browser/web_state_list:test_support", |
| 576 "//ios/chrome/test/base:perf_test_support", | 577 "//ios/chrome/test/base:perf_test_support", |
| 577 "//ios/web/public/test/fakes", | 578 "//ios/web/public/test/fakes", |
| 578 "//testing/gtest", | 579 "//testing/gtest", |
| 579 "//third_party/ocmock", | 580 "//third_party/ocmock", |
| 580 "//ui/base:test_support", | 581 "//ui/base:test_support", |
| 581 ] | 582 ] |
| 582 libs = [ "UIKit.framework" ] | 583 libs = [ "UIKit.framework" ] |
| 583 } | 584 } |
| OLD | NEW |