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

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

Issue 2768573002: Send traffic-management headers from extension updater. (Closed)
Patch Set: Rename on_demand_update to foreground_check. Created 3 years, 9 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
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 import("//net/features.gni") 5 import("//net/features.gni")
6 6
7 static_library("update_client") { 7 static_library("update_client") {
8 sources = [ 8 sources = [
9 "action.cc", 9 "action.cc",
10 "action.h", 10 "action.h",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 "utils.cc", 57 "utils.cc",
58 "utils.h", 58 "utils.h",
59 ] 59 ]
60 60
61 deps = [ 61 deps = [
62 "//base", 62 "//base",
63 "//components/client_update_protocol", 63 "//components/client_update_protocol",
64 "//components/crx_file", 64 "//components/crx_file",
65 "//components/data_use_measurement/core", 65 "//components/data_use_measurement/core",
66 "//components/prefs", 66 "//components/prefs",
67 "//components/version_info:version_info",
67 "//courgette:courgette_lib", 68 "//courgette:courgette_lib",
68 "//crypto", 69 "//crypto",
69 "//net", 70 "//net",
70 "//third_party/libxml", 71 "//third_party/libxml",
71 "//third_party/zlib:zip", 72 "//third_party/zlib:zip",
72 "//url", 73 "//url",
73 ] 74 ]
74 } 75 }
75 76
76 static_library("test_support") { 77 static_library("test_support") {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 sources += [ "crx_downloader_unittest.cc" ] 139 sources += [ "crx_downloader_unittest.cc" ]
139 } 140 }
140 141
141 deps = [ 142 deps = [
142 ":test_support", 143 ":test_support",
143 ":unit_tests_bundle_data", 144 ":unit_tests_bundle_data",
144 ":update_client", 145 ":update_client",
145 "//base", 146 "//base",
146 "//components/prefs", 147 "//components/prefs",
147 "//components/prefs:test_support", 148 "//components/prefs:test_support",
149 "//components/version_info:version_info",
148 "//courgette:courgette_lib", 150 "//courgette:courgette_lib",
149 "//net:test_support", 151 "//net:test_support",
150 "//testing/gmock", 152 "//testing/gmock",
151 "//testing/gtest", 153 "//testing/gtest",
152 "//third_party/libxml", 154 "//third_party/libxml",
153 ] 155 ]
154 } 156 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698