| 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 "resource_request_allowed_notifier.cc", | 9 "resource_request_allowed_notifier.cc", |
| 10 "resource_request_allowed_notifier.h", | 10 "resource_request_allowed_notifier.h", |
| 11 "web_resource_pref_names.cc", | 11 "web_resource_pref_names.cc", |
| 12 "web_resource_pref_names.h", | 12 "web_resource_pref_names.h", |
| 13 "web_resource_service.cc", | 13 "web_resource_service.cc", |
| 14 "web_resource_service.h", | 14 "web_resource_service.h", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 deps = [ | 17 deps = [ |
| 18 "//base", | 18 "//base", |
| 19 "//components/data_use_measurement/core", |
| 19 "//components/google/core/browser", | 20 "//components/google/core/browser", |
| 20 "//components/pref_registry", | 21 "//components/pref_registry", |
| 21 "//components/prefs", | 22 "//components/prefs", |
| 22 "//components/version_info", | 23 "//components/version_info", |
| 23 "//net", | 24 "//net", |
| 24 "//ui/base", | 25 "//ui/base", |
| 25 ] | 26 ] |
| 26 } | 27 } |
| 27 | 28 |
| 28 static_library("test_support") { | 29 static_library("test_support") { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 48 ":test_support", | 49 ":test_support", |
| 49 ":web_resource", | 50 ":web_resource", |
| 50 "//base", | 51 "//base", |
| 51 "//components/prefs:test_support", | 52 "//components/prefs:test_support", |
| 52 "//components/version_info", | 53 "//components/version_info", |
| 53 "//net:test_support", | 54 "//net:test_support", |
| 54 "//testing/gtest", | 55 "//testing/gtest", |
| 55 "//third_party/icu", | 56 "//third_party/icu", |
| 56 ] | 57 ] |
| 57 } | 58 } |
| OLD | NEW |