summaryrefslogtreecommitdiffstats
path: root/components/component_updater.gypi
diff options
context:
space:
mode:
authorsorin <sorin@chromium.org>2015-01-23 17:15:00 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-24 01:16:25 +0000
commit52ac088530b109fa506c4491aea8cf12bcadc63d (patch)
tree64a47ef9e8d4e4662e7366aaea856b9da32ff168 /components/component_updater.gypi
parent9d3bb0c75ddbeafd53f5ad32813b0fe70b7e0779 (diff)
downloadchromium_src-52ac088530b109fa506c4491aea8cf12bcadc63d.zip
chromium_src-52ac088530b109fa506c4491aea8cf12bcadc63d.tar.gz
chromium_src-52ac088530b109fa506c4491aea8cf12bcadc63d.tar.bz2
This is a mechanical change. It is large but straightforward in its intention.
jam: please review the changes under //src/chrome/browser blundell: please review the changes under //src/components waffles: please review the component updater and the update client changes. The intention here is to move most of the component updater dependencies to update_client, with the goal of creating an update_client Chrome component that encapsulates the details of talking with the update servers, downloading, and invoking installers of CRXs for both extensions and components. The dependencies should be: component_updater->update_client. This change just lays down some of the code that will be further used by update_client. No functionality is provided in this change. Also consider the overall goal as WIP; therefore, some of the naming and dependencies are not final. We want to have most of the code in place for future work, but want to minimize the changes to the existing production code and keep the refactoring mechanical for this change. BUG=450337 Review URL: https://codereview.chromium.org/808773005 Cr-Commit-Position: refs/heads/master@{#312986}
Diffstat (limited to 'components/component_updater.gypi')
-rw-r--r--components/component_updater.gypi47
1 files changed, 0 insertions, 47 deletions
diff --git a/components/component_updater.gypi b/components/component_updater.gypi
index bdec48c..baa0801 100644
--- a/components/component_updater.gypi
+++ b/components/component_updater.gypi
@@ -10,72 +10,25 @@
'type': 'static_library',
'dependencies': [
'../base/base.gyp:base',
- '../courgette/courgette.gyp:courgette_lib',
- '../crypto/crypto.gyp:crypto',
- '../third_party/libxml/libxml.gyp:libxml',
- '../third_party/zlib/google/zip.gyp:zip',
- '../net/net.gyp:net',
'../ui/base/ui_base.gyp:ui_base',
'../url/url.gyp:url_lib',
- 'crx_file',
'update_client',
],
'include_dirs': [
'..',
],
'sources': [
- 'component_updater/background_downloader_win.cc',
- 'component_updater/background_downloader_win.h',
- 'component_updater/component_patcher.cc',
- 'component_updater/component_patcher.h',
- 'component_updater/component_patcher_operation.cc',
- 'component_updater/component_patcher_operation.h',
'component_updater/component_updater_configurator.h',
- 'component_updater/component_unpacker.cc',
- 'component_updater/component_unpacker.h',
'component_updater/component_updater_paths.cc',
'component_updater/component_updater_paths.h',
- 'component_updater/component_updater_ping_manager.cc',
- 'component_updater/component_updater_ping_manager.h',
'component_updater/component_updater_service.cc',
'component_updater/component_updater_service.h',
'component_updater/component_updater_switches.cc',
'component_updater/component_updater_switches.h',
- 'component_updater/component_updater_utils.cc',
- 'component_updater/component_updater_utils.h',
- 'component_updater/crx_update_item.h',
- 'component_updater/crx_downloader.cc',
- 'component_updater/crx_downloader.h',
'component_updater/default_component_installer.cc',
'component_updater/default_component_installer.h',
'component_updater/pref_names.cc',
'component_updater/pref_names.h',
- 'component_updater/request_sender.cc',
- 'component_updater/request_sender.h',
- 'component_updater/update_checker.cc',
- 'component_updater/update_checker.h',
- 'component_updater/update_response.cc',
- 'component_updater/update_response.h',
- 'component_updater/url_fetcher_downloader.cc',
- 'component_updater/url_fetcher_downloader.h',
- ],
- },
- {
- # GN version: //components/component_updater:test_support
- 'target_name': 'component_updater_test_support',
- 'type': 'static_library',
- 'dependencies': [
- 'component_updater',
- '../testing/gmock.gyp:gmock',
- '../testing/gtest.gyp:gtest',
- ],
- 'sources': [
- 'component_updater/test/test_configurator.cc',
- 'component_updater/test/test_configurator.h',
- 'component_updater/test/test_installer.cc',
- 'component_updater/test/test_installer.h',
- 'component_updater/test/url_request_post_interceptor.cc',
- 'component_updater/test/url_request_post_interceptor.h',
],
},
],