| 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 source_set("application_delegate") { | 5 source_set("application_delegate") { |
| 6 sources = [ | 6 sources = [ |
| 7 "memory_warning_helper.h", | 7 "memory_warning_helper.h", |
| 8 "memory_warning_helper.mm", | 8 "memory_warning_helper.mm", |
| 9 ] | 9 ] |
| 10 deps = [ | 10 deps = [ |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 "//ui/base", | 125 "//ui/base", |
| 126 "//url", | 126 "//url", |
| 127 ] | 127 ] |
| 128 libs = [ | 128 libs = [ |
| 129 "CoreSpotlight.framework", | 129 "CoreSpotlight.framework", |
| 130 "UIKit.framework", | 130 "UIKit.framework", |
| 131 ] | 131 ] |
| 132 } | 132 } |
| 133 | 133 |
| 134 source_set("test_support") { | 134 source_set("test_support") { |
| 135 configs += [ "//build/config/compiler:enable_arc" ] |
| 135 testonly = true | 136 testonly = true |
| 136 sources = [ | 137 sources = [ |
| 137 "app_state_testing.h", | 138 "app_state_testing.h", |
| 138 "fake_startup_information.h", | 139 "fake_startup_information.h", |
| 139 "fake_startup_information.mm", | 140 "fake_startup_information.mm", |
| 140 "metrics_mediator_testing.h", | 141 "metrics_mediator_testing.h", |
| 141 "mock_tab_opener.h", | 142 "mock_tab_opener.h", |
| 142 "mock_tab_opener.mm", | 143 "mock_tab_opener.mm", |
| 143 ] | 144 ] |
| 144 deps = [ | 145 deps = [ |
| 145 ":application_delegate_internal", | 146 ":application_delegate_internal", |
| 146 "//base", | 147 "//base", |
| 147 "//base/test:test_support", | 148 "//base/test:test_support", |
| 148 "//ios/chrome/app:app_internal", | 149 "//ios/chrome/app:app_internal", |
| 149 "//ios/chrome/browser", | 150 "//ios/chrome/browser", |
| 150 "//net", | 151 "//net", |
| 151 "//ui/base", | 152 "//ui/base", |
| 152 "//url", | 153 "//url", |
| 153 ] | 154 ] |
| 154 libs = [ "UIKit.framework" ] | 155 libs = [ "UIKit.framework" ] |
| 155 } | 156 } |
| OLD | NEW |