| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "native_app_navigation_controller_unittest.mm", | 85 "native_app_navigation_controller_unittest.mm", |
| 86 "native_app_navigation_util_unittest.mm", | 86 "native_app_navigation_util_unittest.mm", |
| 87 ] | 87 ] |
| 88 deps = [ | 88 deps = [ |
| 89 ":native_app_launcher", | 89 ":native_app_launcher", |
| 90 ":native_app_launcher_internal", | 90 ":native_app_launcher_internal", |
| 91 "//base", | 91 "//base", |
| 92 "//base/test:test_support", | 92 "//base/test:test_support", |
| 93 "//components/infobars/core", | 93 "//components/infobars/core", |
| 94 "//ios/chrome/browser", | 94 "//ios/chrome/browser", |
| 95 "//ios/chrome/browser/infobars:infobars", |
| 95 "//ios/chrome/browser/web:test_support", | 96 "//ios/chrome/browser/web:test_support", |
| 96 "//ios/chrome/test:test_support", | 97 "//ios/chrome/test:test_support", |
| 97 "//ios/public/provider/chrome/browser", | 98 "//ios/public/provider/chrome/browser", |
| 98 "//ios/public/provider/chrome/browser:test_support", | 99 "//ios/public/provider/chrome/browser:test_support", |
| 99 "//ios/public/provider/chrome/browser/native_app_launcher:test_support", | 100 "//ios/public/provider/chrome/browser/native_app_launcher:test_support", |
| 100 "//ios/public/provider/chrome/browser/signin:test_support", | 101 "//ios/public/provider/chrome/browser/signin:test_support", |
| 101 "//ios/web", | 102 "//ios/web", |
| 102 "//ios/web:test_support", | 103 "//ios/web:test_support", |
| 103 "//net:test_support", | 104 "//net:test_support", |
| 104 "//testing/gmock", | 105 "//testing/gmock", |
| 105 "//testing/gtest", | 106 "//testing/gtest", |
| 106 "//ui/base", | 107 "//ui/base", |
| 107 "//url", | 108 "//url", |
| 108 ] | 109 ] |
| 109 } | 110 } |
| OLD | NEW |