| 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("native_app_launcher") { | 5 source_set("native_app_launcher") { |
| 6 sources = [ | 6 sources = [ |
| 7 "ios_appstore_ids.h", | 7 "ios_appstore_ids.h", |
| 8 "ios_appstore_ids.mm", | 8 "ios_appstore_ids.mm", |
| 9 "native_app_infobar_controller.h", | 9 "native_app_infobar_controller.h", |
| 10 "native_app_infobar_controller.mm", | 10 "native_app_infobar_controller.mm", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "native_app_navigation_util.mm", | 59 "native_app_navigation_util.mm", |
| 60 ] | 60 ] |
| 61 deps = [ | 61 deps = [ |
| 62 ":native_app_launcher", | 62 ":native_app_launcher", |
| 63 "//base", | 63 "//base", |
| 64 "//components/image_fetcher/ios", | 64 "//components/image_fetcher/ios", |
| 65 "//components/infobars/core", | 65 "//components/infobars/core", |
| 66 "//ios/chrome/browser", | 66 "//ios/chrome/browser", |
| 67 "//ios/chrome/browser/infobars", | 67 "//ios/chrome/browser/infobars", |
| 68 "//ios/chrome/browser/net", | 68 "//ios/chrome/browser/net", |
| 69 "//ios/chrome/browser/store_kit", |
| 69 "//ios/chrome/browser/tabs", | 70 "//ios/chrome/browser/tabs", |
| 70 "//ios/public/provider/chrome/browser", | 71 "//ios/public/provider/chrome/browser", |
| 71 "//ios/public/provider/chrome/browser/native_app_launcher", | 72 "//ios/public/provider/chrome/browser/native_app_launcher", |
| 72 "//ios/public/provider/chrome/browser/signin", | 73 "//ios/public/provider/chrome/browser/signin", |
| 73 "//ios/public/provider/chrome/browser/ui", | 74 "//ios/public/provider/chrome/browser/ui", |
| 74 "//ios/web", | 75 "//ios/web", |
| 75 "//net", | 76 "//net", |
| 76 "//ui/base", | 77 "//ui/base", |
| 77 "//url", | 78 "//url", |
| 78 ] | 79 ] |
| (...skipping 22 matching lines...) Expand all Loading... |
| 101 "//ios/public/provider/chrome/browser/signin:test_support", | 102 "//ios/public/provider/chrome/browser/signin:test_support", |
| 102 "//ios/web", | 103 "//ios/web", |
| 103 "//ios/web:test_support", | 104 "//ios/web:test_support", |
| 104 "//net:test_support", | 105 "//net:test_support", |
| 105 "//testing/gmock", | 106 "//testing/gmock", |
| 106 "//testing/gtest", | 107 "//testing/gtest", |
| 107 "//ui/base", | 108 "//ui/base", |
| 108 "//url", | 109 "//url", |
| 109 ] | 110 ] |
| 110 } | 111 } |
| OLD | NEW |