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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "eula_accepted_notifier_unittest.cc", | 56 "eula_accepted_notifier_unittest.cc", |
57 "promo_resource_service_unittest.cc", | 57 "promo_resource_service_unittest.cc", |
58 "resource_request_allowed_notifier_unittest.cc", | 58 "resource_request_allowed_notifier_unittest.cc", |
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 ":web_resource", | 67 ":web_resource", |
67 ":test_support", | |
68 "//base", | 68 "//base", |
69 "//base:prefs_test_support", | 69 "//base: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 |