Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(582)

Side by Side Diff: components/component_updater/BUILD.gn

Issue 565363002: Implement support for fallback update check urls in the component updater (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/component_updater.gypi ('k') | components/component_updater/component_patcher.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 source_set("component_updater") { 5 source_set("component_updater") {
6 sources = [ 6 sources = [
7 "background_downloader_win.cc", 7 "background_downloader_win.cc",
8 "background_downloader_win.h", 8 "background_downloader_win.h",
9 "component_patcher.cc", 9 "component_patcher.cc",
10 "component_patcher.h", 10 "component_patcher.h",
(...skipping 12 matching lines...) Expand all
23 "component_updater_switches.h", 23 "component_updater_switches.h",
24 "component_updater_utils.cc", 24 "component_updater_utils.cc",
25 "component_updater_utils.h", 25 "component_updater_utils.h",
26 "crx_update_item.h", 26 "crx_update_item.h",
27 "crx_downloader.cc", 27 "crx_downloader.cc",
28 "crx_downloader.h", 28 "crx_downloader.h",
29 "default_component_installer.cc", 29 "default_component_installer.cc",
30 "default_component_installer.h", 30 "default_component_installer.h",
31 "pref_names.cc", 31 "pref_names.cc",
32 "pref_names.h", 32 "pref_names.h",
33 "request_sender.cc",
34 "request_sender.h",
33 "update_checker.cc", 35 "update_checker.cc",
34 "update_checker.h", 36 "update_checker.h",
35 "update_response.cc", 37 "update_response.cc",
36 "update_response.h", 38 "update_response.h",
37 "url_fetcher_downloader.cc", 39 "url_fetcher_downloader.cc",
38 "url_fetcher_downloader.h", 40 "url_fetcher_downloader.h",
39 ] 41 ]
40 42
41 deps = [ 43 deps = [
42 "//base", 44 "//base",
(...skipping 25 matching lines...) Expand all
68 "//testing/gmock", 70 "//testing/gmock",
69 ] 71 ]
70 } 72 }
71 73
72 source_set("unit_tests") { 74 source_set("unit_tests") {
73 testonly = true 75 testonly = true
74 sources = [ 76 sources = [
75 "test/component_patcher_unittest.cc", 77 "test/component_patcher_unittest.cc",
76 "test/component_updater_ping_manager_unittest.cc", 78 "test/component_updater_ping_manager_unittest.cc",
77 "test/crx_downloader_unittest.cc", 79 "test/crx_downloader_unittest.cc",
80 "test/request_sender_unittest.cc",
78 "test/update_checker_unittest.cc", 81 "test/update_checker_unittest.cc",
79 "test/update_response_unittest.cc", 82 "test/update_response_unittest.cc",
80 ] 83 ]
81 84
82 deps = [ 85 deps = [
83 ":component_updater", 86 ":component_updater",
84 ":test_support", 87 ":test_support",
85 "//testing/gtest", 88 "//testing/gtest",
86 "//testing/gmock", 89 "//testing/gmock",
87 "//third_party/libxml", 90 "//third_party/libxml",
88 ] 91 ]
89 } 92 }
OLDNEW
« no previous file with comments | « components/component_updater.gypi ('k') | components/component_updater/component_patcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698