Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: ios/chrome/browser/native_app_launcher/BUILD.gn

Issue 2508663002: [ios] Move NativeAppLauncher upstream (Closed)
Patch Set: Unittests, CL Feedback Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("native_app_launcher") {
6 sources = [
7 "ios_appstore_ids.h",
8 "ios_appstore_ids.mm",
9 "native_app_infobar_controller.h",
10 "native_app_infobar_controller.mm",
11 "native_app_infobar_delegate.h",
12 "native_app_infobar_delegate.mm",
13 "native_app_navigation_controller_protocol.h",
14 ]
15 deps = [
16 "//base",
17 "//components/infobars/core",
18 "//ios/chrome/app/strings",
19 "//ios/chrome/browser/infobars",
20 "//ios/public/provider/chrome/browser",
21 "//ui/base:base",
sdefresne 2016/11/21 08:46:04 Just "//ui/base"
sczs1 2016/11/21 17:43:00 Done.
22 "//url:url",
sdefresne 2016/11/21 08:46:04 Just "//url"
sczs1 2016/11/21 17:43:00 Done.
23 ]
24 }
25
26 source_set("unit_tests") {
27 testonly = true
28 sources = [
29 "native_app_infobar_controller_unittest.mm",
30 "native_app_infobar_delegate_unittest.mm",
31 ]
32 deps = [
33 ":native_app_launcher",
34 "//base",
35 "//base/test:test_support",
36 "//components/infobars/core",
37 "//ios/chrome/browser",
38 "//ios/chrome/browser/net:test_support",
39 "//ios/chrome/test:test_support",
40 "//ios/public/provider/chrome/browser",
41 "//ios/public/provider/chrome/browser:test_support",
42 "//ios/web",
43 "//ios/web:test_support",
44 "//net:test_support",
45 "//testing/gmock",
46 "//testing/gtest",
47 "//url",
48 ]
49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698