| 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 "promo_resource_service.cc", | 9 "promo_resource_service.cc", |
| 10 "promo_resource_service.h", | 10 "promo_resource_service.h", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 ":web_resource", | 37 ":web_resource", |
| 38 "//base", | 38 "//base", |
| 39 ] | 39 ] |
| 40 } | 40 } |
| 41 | 41 |
| 42 source_set("unit_tests") { | 42 source_set("unit_tests") { |
| 43 testonly = true | 43 testonly = true |
| 44 sources = [ | 44 sources = [ |
| 45 "eula_accepted_notifier_unittest.cc", | 45 "eula_accepted_notifier_unittest.cc", |
| 46 "resource_request_allowed_notifier_unittest.cc", | 46 "resource_request_allowed_notifier_unittest.cc", |
| 47 "web_resource_service_unittest.cc", |
| 47 ] | 48 ] |
| 48 | 49 |
| 49 deps = [ | 50 deps = [ |
| 50 ":test_support", | 51 ":test_support", |
| 51 ":web_resource", | 52 ":web_resource", |
| 52 "//base", | 53 "//base", |
| 53 "//components/prefs:test_support", | 54 "//components/prefs:test_support", |
| 54 "//components/version_info", | 55 "//components/version_info", |
| 55 "//net:test_support", | 56 "//net:test_support", |
| 56 "//testing/gtest", | 57 "//testing/gtest", |
| 57 "//third_party/icu", | 58 "//third_party/icu", |
| 58 ] | 59 ] |
| 59 } | 60 } |
| OLD | NEW |