Ensure low-memory renderers retry failed loads correctly.
[chromium-blink-merge.git] / components / component_updater / BUILD.gn
blobc75b5096baa4cd5cef9cc9bd972d51cdedeb75b7
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
3 # found in the LICENSE file.
5 source_set("component_updater") {
6   sources = [
7     "component_updater_paths.cc",
8     "component_updater_paths.h",
9     "component_updater_service.cc",
10     "component_updater_service.h",
11     "component_updater_service_internal.h",
12     "component_updater_switches.cc",
13     "component_updater_switches.h",
14     "component_updater_url_constants.cc",
15     "component_updater_url_constants.h",
16     "configurator_impl.cc",
17     "configurator_impl.h",
18     "default_component_installer.cc",
19     "default_component_installer.h",
20     "pref_names.cc",
21     "pref_names.h",
22     "timer.cc",
23     "timer.h",
24   ]
26   deps = [
27     "//base",
28     "//components/update_client",
29     "//components/version_info",
30     "//ui/base",
31     "//url",
32   ]
35 source_set("unit_tests") {
36   testonly = true
37   sources = [
38     "component_updater_service_unittest.cc",
39     "timer_unittest.cc",
40   ]
42   deps = [
43     ":component_updater",
44     "//base",
45     "//testing/gtest",
46     "//testing/gmock",
47   ]