Chromium Code Reviews| 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 20 matching lines...) Expand all Loading... | |
| 31 ":application_delegate", | 31 ":application_delegate", |
| 32 ":application_delegate_internal", | 32 ":application_delegate_internal", |
| 33 ":test_support", | 33 ":test_support", |
| 34 "//base", | 34 "//base", |
| 35 "//base/test:test_support", | 35 "//base/test:test_support", |
| 36 "//breakpad:client", | 36 "//breakpad:client", |
| 37 "//components/handoff", | 37 "//components/handoff", |
| 38 "//components/metrics", | 38 "//components/metrics", |
| 39 "//ios/chrome/app", | 39 "//ios/chrome/app", |
| 40 "//ios/chrome/app:app_internal", | 40 "//ios/chrome/app:app_internal", |
| 41 "//ios/chrome/app/application_delegate", | |
|
sdefresne
2017/01/04 15:29:59
This is a duplicated dependency as this target alr
| |
| 42 "//ios/chrome/app/safe_mode", | 41 "//ios/chrome/app/safe_mode", |
| 43 "//ios/chrome/app/spotlight", | 42 "//ios/chrome/app/spotlight", |
| 44 "//ios/chrome/browser", | 43 "//ios/chrome/browser", |
| 45 "//ios/chrome/browser/browser_state:test_support", | 44 "//ios/chrome/browser/browser_state:test_support", |
| 46 "//ios/chrome/browser/crash_report", | 45 "//ios/chrome/browser/crash_report", |
| 47 "//ios/chrome/browser/device_sharing", | 46 "//ios/chrome/browser/device_sharing", |
| 48 "//ios/chrome/browser/geolocation", | 47 "//ios/chrome/browser/geolocation", |
| 49 "//ios/chrome/browser/metrics", | 48 "//ios/chrome/browser/metrics", |
| 50 "//ios/chrome/browser/tabs", | 49 "//ios/chrome/browser/tabs", |
| 51 "//ios/chrome/browser/u2f", | 50 "//ios/chrome/browser/u2f", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 85 "metrics_mediator.mm", | 84 "metrics_mediator.mm", |
| 86 "startup_information.h", | 85 "startup_information.h", |
| 87 "tab_opening.h", | 86 "tab_opening.h", |
| 88 "tab_switching.h", | 87 "tab_switching.h", |
| 89 "url_opener.h", | 88 "url_opener.h", |
| 90 "url_opener.mm", | 89 "url_opener.mm", |
| 91 "user_activity_handler.h", | 90 "user_activity_handler.h", |
| 92 "user_activity_handler.mm", | 91 "user_activity_handler.mm", |
| 93 ] | 92 ] |
| 94 deps = [ | 93 deps = [ |
| 94 ":application_delegate", | |
| 95 "//base", | 95 "//base", |
| 96 "//components/crash/core/common", | 96 "//components/crash/core/common", |
| 97 "//components/handoff", | 97 "//components/handoff", |
| 98 "//components/metrics", | 98 "//components/metrics", |
| 99 "//components/prefs", | 99 "//components/prefs", |
| 100 "//ios/chrome/app", | 100 "//ios/chrome/app", |
| 101 "//ios/chrome/app/application_delegate", | |
| 102 "//ios/chrome/app/safe_mode", | 101 "//ios/chrome/app/safe_mode", |
| 103 "//ios/chrome/app/spotlight", | 102 "//ios/chrome/app/spotlight", |
| 104 "//ios/chrome/browser", | 103 "//ios/chrome/browser", |
| 105 "//ios/chrome/browser/browser_state", | 104 "//ios/chrome/browser/browser_state", |
| 106 "//ios/chrome/browser/crash_report", | 105 "//ios/chrome/browser/crash_report", |
| 107 "//ios/chrome/browser/device_sharing", | 106 "//ios/chrome/browser/device_sharing", |
| 108 "//ios/chrome/browser/geolocation", | 107 "//ios/chrome/browser/geolocation", |
| 109 "//ios/chrome/browser/metrics", | 108 "//ios/chrome/browser/metrics", |
| 110 "//ios/chrome/browser/metrics:metrics_internal", | 109 "//ios/chrome/browser/metrics:metrics_internal", |
| 111 "//ios/chrome/browser/net", | 110 "//ios/chrome/browser/net", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 146 "//base", | 145 "//base", |
| 147 "//base/test:test_support", | 146 "//base/test:test_support", |
| 148 "//ios/chrome/app:app_internal", | 147 "//ios/chrome/app:app_internal", |
| 149 "//ios/chrome/browser", | 148 "//ios/chrome/browser", |
| 150 "//net", | 149 "//net", |
| 151 "//ui/base", | 150 "//ui/base", |
| 152 "//url", | 151 "//url", |
| 153 ] | 152 ] |
| 154 libs = [ "UIKit.framework" ] | 153 libs = [ "UIKit.framework" ] |
| 155 } | 154 } |
| OLD | NEW |