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

Side by Side Diff: components/update_client.gypi

Issue 808773005: Move most of the component updater artifacts to update_client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/update_client
8 'target_name': 'update_client', 9 'target_name': 'update_client',
9 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [
12 '../base/base.gyp:base',
13 '../courgette/courgette.gyp:courgette_lib',
14 '../crypto/crypto.gyp:crypto',
15 '../third_party/libxml/libxml.gyp:libxml',
16 '../third_party/zlib/google/zip.gyp:zip',
17 '../net/net.gyp:net',
18 '../url/url.gyp:url_lib',
19 'crx_file',
20 ],
21
10 'include_dirs': [ 22 'include_dirs': [
11 '..', 23 '..',
12 ], 24 ],
13 'dependencies': [
14 '../base/base.gyp:base',
15 ],
16 'sources': [ 25 'sources': [
26 'update_client/background_downloader_win.cc',
27 'update_client/background_downloader_win.h',
28 'update_client/component_patcher.cc',
29 'update_client/component_patcher.h',
30 'update_client/component_patcher_operation.cc',
31 'update_client/component_patcher_operation.h',
32 'update_client/component_unpacker.cc',
33 'update_client/component_unpacker.h',
34 'update_client/ping_manager.cc',
35 'update_client/ping_manager.h',
36 'update_client/crx_update_item.h',
37 'update_client/crx_downloader.cc',
38 'update_client/crx_downloader.h',
39 'update_client/request_sender.cc',
40 'update_client/request_sender.h',
41 'update_client/update_checker.cc',
42 'update_client/update_checker.h',
43 'update_client/update_client.cc',
44 'update_client/update_client.h',
45 'update_client/update_response.cc',
46 'update_client/update_response.h',
17 'update_client/update_query_params.cc', 47 'update_client/update_query_params.cc',
18 'update_client/update_query_params.h', 48 'update_client/update_query_params.h',
19 'update_client/update_query_params_delegate.cc', 49 'update_client/update_query_params_delegate.cc',
20 'update_client/update_query_params_delegate.h', 50 'update_client/update_query_params_delegate.h',
51 'update_client/url_fetcher_downloader.cc',
52 'update_client/url_fetcher_downloader.h',
53 'update_client/utils.cc',
54 'update_client/utils.h',
55 ],
56 },
57 {
58 # GN version: //components/update_client:test_support
59 'target_name': 'update_client_test_support',
60 'type': 'static_library',
61 'dependencies': [
62 'update_client',
63 '../testing/gmock.gyp:gmock',
64 '../testing/gtest.gyp:gtest',
65 ],
66
67 'include_dirs': [
68 '..',
69 ],
70 'sources': [
71 'update_client/test/test_configurator.cc',
72 'update_client/test/test_configurator.h',
73 'update_client/test/test_installer.cc',
74 'update_client/test/test_installer.h',
75 'update_client/test/url_request_post_interceptor.cc',
76 'update_client/test/url_request_post_interceptor.h',
21 ], 77 ],
22 }, 78 },
23 ], 79 ],
24 } 80 }
OLDNEW
« no previous file with comments | « components/test/data/update_client/updatecheck_reply_noupdate.xml ('k') | components/update_client/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698