| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "//url", | 49 "//url", |
| 50 ] | 50 ] |
| 51 } | 51 } |
| 52 | 52 |
| 53 source_set("native_app_launcher_internal") { | 53 source_set("native_app_launcher_internal") { |
| 54 sources = [ | 54 sources = [ |
| 55 "native_app_navigation_controller.h", | 55 "native_app_navigation_controller.h", |
| 56 "native_app_navigation_controller.mm", | 56 "native_app_navigation_controller.mm", |
| 57 ] | 57 ] |
| 58 deps = [ | 58 deps = [ |
| 59 ":native_app_launcher", |
| 59 "//base", | 60 "//base", |
| 60 "//components/infobars/core", | 61 "//components/infobars/core", |
| 61 "//ios/chrome/browser", | 62 "//ios/chrome/browser", |
| 62 "//ios/chrome/browser/infobars", | 63 "//ios/chrome/browser/infobars", |
| 63 "//ios/chrome/browser/native_app_launcher", | |
| 64 "//ios/chrome/browser/net", | 64 "//ios/chrome/browser/net", |
| 65 "//ios/chrome/browser/tabs", | 65 "//ios/chrome/browser/tabs", |
| 66 "//ios/public/provider/chrome/browser", | 66 "//ios/public/provider/chrome/browser", |
| 67 "//ios/public/provider/chrome/browser/native_app_launcher", | 67 "//ios/public/provider/chrome/browser/native_app_launcher", |
| 68 "//ios/public/provider/chrome/browser/signin", | 68 "//ios/public/provider/chrome/browser/signin", |
| 69 "//ios/public/provider/chrome/browser/ui", | 69 "//ios/public/provider/chrome/browser/ui", |
| 70 "//ios/web", | 70 "//ios/web", |
| 71 "//net", | 71 "//net", |
| 72 "//ui/base", | 72 "//ui/base", |
| 73 "//url", | 73 "//url", |
| 74 ] | 74 ] |
| 75 libs = [ "StoreKit.framework" ] | 75 libs = [ "StoreKit.framework" ] |
| 76 } | 76 } |
| 77 | 77 |
| 78 source_set("unit_tests_internal") { | 78 source_set("unit_tests_internal") { |
| 79 testonly = true | 79 testonly = true |
| 80 sources = [ | 80 sources = [ |
| 81 "native_app_navigation_controller_unittest.mm", | 81 "native_app_navigation_controller_unittest.mm", |
| 82 ] | 82 ] |
| 83 deps = [ | 83 deps = [ |
| 84 ":native_app_launcher", |
| 84 ":native_app_launcher_internal", | 85 ":native_app_launcher_internal", |
| 85 "//base", | 86 "//base", |
| 86 "//base/test:test_support", | 87 "//base/test:test_support", |
| 87 "//components/infobars/core", | 88 "//components/infobars/core", |
| 88 "//ios/chrome/browser", | 89 "//ios/chrome/browser", |
| 89 "//ios/chrome/browser/native_app_launcher", | |
| 90 "//ios/chrome/test:test_support", | 90 "//ios/chrome/test:test_support", |
| 91 "//ios/public/provider/chrome/browser", | 91 "//ios/public/provider/chrome/browser", |
| 92 "//ios/public/provider/chrome/browser:test_support", | 92 "//ios/public/provider/chrome/browser:test_support", |
| 93 "//ios/public/provider/chrome/browser/native_app_launcher:test_support", | 93 "//ios/public/provider/chrome/browser/native_app_launcher:test_support", |
| 94 "//ios/public/provider/chrome/browser/signin:test_support", | 94 "//ios/public/provider/chrome/browser/signin:test_support", |
| 95 "//ios/web", | 95 "//ios/web", |
| 96 "//ios/web:test_support", | 96 "//ios/web:test_support", |
| 97 "//net:test_support", | 97 "//net:test_support", |
| 98 "//testing/gmock", | 98 "//testing/gmock", |
| 99 "//testing/gtest", | 99 "//testing/gtest", |
| 100 "//url", | 100 "//url", |
| 101 ] | 101 ] |
| 102 } | 102 } |
| OLD | NEW |