| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "//ios/chrome/browser/ui/main", | 53 "//ios/chrome/browser/ui/main", |
| 54 "//ios/chrome/browser/ui/settings", | 54 "//ios/chrome/browser/ui/settings", |
| 55 "//ios/chrome/test:test_support", | 55 "//ios/chrome/test:test_support", |
| 56 "//ios/chrome/test/base", | 56 "//ios/chrome/test/base", |
| 57 "//ios/chrome/test/ocmock", | 57 "//ios/chrome/test/ocmock", |
| 58 "//ios/public/provider/chrome/browser:test_support", | 58 "//ios/public/provider/chrome/browser:test_support", |
| 59 "//ios/public/provider/chrome/browser/distribution", | 59 "//ios/public/provider/chrome/browser/distribution", |
| 60 "//ios/public/provider/chrome/browser/user_feedback:test_support", | 60 "//ios/public/provider/chrome/browser/user_feedback:test_support", |
| 61 "//ios/testing:ocmock_support", | 61 "//ios/testing:ocmock_support", |
| 62 "//ios/web", | 62 "//ios/web", |
| 63 "//ios/web:test_support", | 63 "//ios/web/public/test:test_support", |
| 64 "//net:test_support", | 64 "//net:test_support", |
| 65 "//testing/gtest", | 65 "//testing/gtest", |
| 66 "//third_party/ocmock", | 66 "//third_party/ocmock", |
| 67 "//ui/base", | 67 "//ui/base", |
| 68 "//url", | 68 "//url", |
| 69 ] | 69 ] |
| 70 libs = [ | 70 libs = [ |
| 71 "CoreSpotlight.framework", | 71 "CoreSpotlight.framework", |
| 72 "QuartzCore.framework", | 72 "QuartzCore.framework", |
| 73 ] | 73 ] |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 "//base", | 148 "//base", |
| 149 "//base/test:test_support", | 149 "//base/test:test_support", |
| 150 "//ios/chrome/app:app_internal", | 150 "//ios/chrome/app:app_internal", |
| 151 "//ios/chrome/browser", | 151 "//ios/chrome/browser", |
| 152 "//net", | 152 "//net", |
| 153 "//ui/base", | 153 "//ui/base", |
| 154 "//url", | 154 "//url", |
| 155 ] | 155 ] |
| 156 libs = [ "UIKit.framework" ] | 156 libs = [ "UIKit.framework" ] |
| 157 } | 157 } |
| OLD | NEW |