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