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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
47 "//testing/gmock", | 47 "//testing/gmock", |
48 "//testing/gtest", | 48 "//testing/gtest", |
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 "native_app_navigation_utils.h", | |
Eugene But (OOO till 7-30)
2017/01/26 01:04:38
Optional nit: util. suffix is much more common tha
pkl (ping after 24h if needed)
2017/01/26 02:26:28
Done.
| |
58 "native_app_navigation_utils.mm", | |
57 ] | 59 ] |
58 deps = [ | 60 deps = [ |
59 ":native_app_launcher", | 61 ":native_app_launcher", |
60 "//base", | 62 "//base", |
61 "//components/infobars/core", | 63 "//components/infobars/core", |
62 "//ios/chrome/browser", | 64 "//ios/chrome/browser", |
63 "//ios/chrome/browser/infobars", | 65 "//ios/chrome/browser/infobars", |
64 "//ios/chrome/browser/net", | 66 "//ios/chrome/browser/net", |
65 "//ios/chrome/browser/tabs", | 67 "//ios/chrome/browser/tabs", |
66 "//ios/public/provider/chrome/browser", | 68 "//ios/public/provider/chrome/browser", |
67 "//ios/public/provider/chrome/browser/native_app_launcher", | 69 "//ios/public/provider/chrome/browser/native_app_launcher", |
68 "//ios/public/provider/chrome/browser/signin", | 70 "//ios/public/provider/chrome/browser/signin", |
69 "//ios/public/provider/chrome/browser/ui", | 71 "//ios/public/provider/chrome/browser/ui", |
70 "//ios/web", | 72 "//ios/web", |
71 "//net", | 73 "//net", |
72 "//ui/base", | 74 "//ui/base", |
73 "//url", | 75 "//url", |
74 ] | 76 ] |
75 libs = [ "StoreKit.framework" ] | 77 libs = [ "StoreKit.framework" ] |
76 } | 78 } |
77 | 79 |
78 source_set("unit_tests_internal") { | 80 source_set("unit_tests_internal") { |
79 testonly = true | 81 testonly = true |
80 sources = [ | 82 sources = [ |
81 "native_app_navigation_controller_unittest.mm", | 83 "native_app_navigation_controller_unittest.mm", |
84 "native_app_navigation_utils_unittest.mm", | |
82 ] | 85 ] |
83 deps = [ | 86 deps = [ |
84 ":native_app_launcher", | 87 ":native_app_launcher", |
85 ":native_app_launcher_internal", | 88 ":native_app_launcher_internal", |
86 "//base", | 89 "//base", |
87 "//base/test:test_support", | 90 "//base/test:test_support", |
88 "//components/infobars/core", | 91 "//components/infobars/core", |
89 "//ios/chrome/browser", | 92 "//ios/chrome/browser", |
93 "//ios/chrome/browser/web:test_support", | |
90 "//ios/chrome/test:test_support", | 94 "//ios/chrome/test:test_support", |
91 "//ios/public/provider/chrome/browser", | 95 "//ios/public/provider/chrome/browser", |
92 "//ios/public/provider/chrome/browser:test_support", | 96 "//ios/public/provider/chrome/browser:test_support", |
93 "//ios/public/provider/chrome/browser/native_app_launcher:test_support", | 97 "//ios/public/provider/chrome/browser/native_app_launcher:test_support", |
94 "//ios/public/provider/chrome/browser/signin:test_support", | 98 "//ios/public/provider/chrome/browser/signin:test_support", |
95 "//ios/web", | 99 "//ios/web", |
96 "//ios/web:test_support", | 100 "//ios/web:test_support", |
97 "//net:test_support", | 101 "//net:test_support", |
98 "//testing/gmock", | 102 "//testing/gmock", |
99 "//testing/gtest", | 103 "//testing/gtest", |
100 "//url", | 104 "//url", |
101 ] | 105 ] |
102 } | 106 } |
OLD | NEW |