| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "//ui/base", | 66 "//ui/base", |
| 67 "//url", | 67 "//url", |
| 68 ] | 68 ] |
| 69 libs = [ | 69 libs = [ |
| 70 "CoreSpotlight.framework", | 70 "CoreSpotlight.framework", |
| 71 "QuartzCore.framework", | 71 "QuartzCore.framework", |
| 72 ] | 72 ] |
| 73 } | 73 } |
| 74 | 74 |
| 75 source_set("application_delegate_internal") { | 75 source_set("application_delegate_internal") { |
| 76 configs += [ "//build/config/compiler:enable_arc" ] |
| 76 sources = [ | 77 sources = [ |
| 77 "app_navigation.h", | 78 "app_navigation.h", |
| 78 "app_state.h", | 79 "app_state.h", |
| 79 "app_state.mm", | 80 "app_state.mm", |
| 80 "background_activity.h", | 81 "background_activity.h", |
| 81 "background_activity.mm", | 82 "background_activity.mm", |
| 82 "browser_launcher.h", | 83 "browser_launcher.h", |
| 83 "metrics_mediator.h", | 84 "metrics_mediator.h", |
| 84 "metrics_mediator.mm", | 85 "metrics_mediator.mm", |
| 85 "startup_information.h", | 86 "startup_information.h", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "//base", | 146 "//base", |
| 146 "//base/test:test_support", | 147 "//base/test:test_support", |
| 147 "//ios/chrome/app:app_internal", | 148 "//ios/chrome/app:app_internal", |
| 148 "//ios/chrome/browser", | 149 "//ios/chrome/browser", |
| 149 "//net", | 150 "//net", |
| 150 "//ui/base", | 151 "//ui/base", |
| 151 "//url", | 152 "//url", |
| 152 ] | 153 ] |
| 153 libs = [ "UIKit.framework" ] | 154 libs = [ "UIKit.framework" ] |
| 154 } | 155 } |
| OLD | NEW |