OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 static_library("web_resource") { | 5 static_library("web_resource") { |
6 sources = [ | 6 sources = [ |
7 "eula_accepted_notifier.cc", | 7 "eula_accepted_notifier.cc", |
8 "eula_accepted_notifier.h", | 8 "eula_accepted_notifier.h", |
9 "notification_promo.cc", | 9 "notification_promo.cc", |
10 "notification_promo.h", | 10 "notification_promo.h", |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 if (is_android || is_ios) { | 23 if (is_android || is_ios) { |
24 sources += [ | 24 sources += [ |
25 "notification_promo_mobile_ntp.cc", | 25 "notification_promo_mobile_ntp.cc", |
26 "notification_promo_mobile_ntp.h", | 26 "notification_promo_mobile_ntp.h", |
27 ] | 27 ] |
28 } | 28 } |
29 | 29 |
30 deps = [ | 30 deps = [ |
31 "//base", | 31 "//base", |
32 "//base:prefs", | |
33 "//components/google/core/browser", | 32 "//components/google/core/browser", |
34 "//components/pref_registry", | 33 "//components/pref_registry", |
| 34 "//components/prefs", |
35 "//components/version_info", | 35 "//components/version_info", |
36 "//net", | 36 "//net", |
37 "//ui/base", | 37 "//ui/base", |
38 ] | 38 ] |
39 } | 39 } |
40 | 40 |
41 static_library("test_support") { | 41 static_library("test_support") { |
42 sources = [ | 42 sources = [ |
43 "resource_request_allowed_notifier_test_util.cc", | 43 "resource_request_allowed_notifier_test_util.cc", |
44 "resource_request_allowed_notifier_test_util.h", | 44 "resource_request_allowed_notifier_test_util.h", |
(...skipping 14 matching lines...) Expand all Loading... |
59 ] | 59 ] |
60 | 60 |
61 if (is_android || is_ios) { | 61 if (is_android || is_ios) { |
62 sources += [ "promo_resource_service_mobile_ntp_unittest.cc" ] | 62 sources += [ "promo_resource_service_mobile_ntp_unittest.cc" ] |
63 } | 63 } |
64 | 64 |
65 deps = [ | 65 deps = [ |
66 ":test_support", | 66 ":test_support", |
67 ":web_resource", | 67 ":web_resource", |
68 "//base", | 68 "//base", |
69 "//base:prefs_test_support", | 69 "//components/prefs:test_support", |
70 "//components/version_info", | 70 "//components/version_info", |
71 "//net:test_support", | 71 "//net:test_support", |
72 "//testing/gtest", | 72 "//testing/gtest", |
73 "//third_party/icu", | 73 "//third_party/icu", |
74 ] | 74 ] |
75 } | 75 } |
OLD | NEW |