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

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

Issue 1281913002: Componentize ComponentUpdaterConfigurator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 5 years, 4 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 source_set("update_client") { 5 source_set("update_client") {
6 sources = [ 6 sources = [
7 "action.cc", 7 "action.cc",
8 "action.h", 8 "action.h",
9 "action_update.cc", 9 "action_update.cc",
10 "action_update.h", 10 "action_update.h",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "update_response.h", 46 "update_response.h",
47 "url_fetcher_downloader.cc", 47 "url_fetcher_downloader.cc",
48 "url_fetcher_downloader.h", 48 "url_fetcher_downloader.h",
49 "utils.cc", 49 "utils.cc",
50 "utils.h", 50 "utils.h",
51 ] 51 ]
52 52
53 deps = [ 53 deps = [
54 "//base", 54 "//base",
55 "//components/crx_file", 55 "//components/crx_file",
56 "//components/version_info",
56 "//courgette:courgette_lib", 57 "//courgette:courgette_lib",
57 "//crypto", 58 "//crypto",
58 "//third_party/libxml", 59 "//third_party/libxml",
59 "//third_party/zlib:zip", 60 "//third_party/zlib:zip",
60 "//net", 61 "//net",
61 "//url", 62 "//url",
62 ] 63 ]
63 } 64 }
64 65
65 source_set("test_support") { 66 source_set("test_support") {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 ":update_client", 100 ":update_client",
100 ":test_support", 101 ":test_support",
101 "//base", 102 "//base",
102 "//courgette:courgette_lib", 103 "//courgette:courgette_lib",
103 "//net:test_support", 104 "//net:test_support",
104 "//testing/gtest", 105 "//testing/gtest",
105 "//testing/gmock", 106 "//testing/gmock",
106 "//third_party/libxml", 107 "//third_party/libxml",
107 ] 108 ]
108 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698