summaryrefslogtreecommitdiff
path: root/chromium/components/component_updater.gypi
diff options
context:
space:
mode:
authorZeno Albisser <zeno.albisser@theqtcompany.com>2014-12-05 15:04:29 +0100
committerAndras Becsi <andras.becsi@theqtcompany.com>2014-12-09 10:49:28 +0100
commitaf6588f8d723931a298c995fa97259bb7f7deb55 (patch)
tree060ca707847ba1735f01af2372e0d5e494dc0366 /chromium/components/component_updater.gypi
parent2fff84d821cc7b1c785f6404e0f8091333283e74 (diff)
downloadqtwebengine-chromium-af6588f8d723931a298c995fa97259bb7f7deb55.tar.gz
BASELINE: Update chromium to 40.0.2214.28 and ninja to 1.5.3.
Change-Id: I759465284fd64d59ad120219cbe257f7402c4181 Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com>
Diffstat (limited to 'chromium/components/component_updater.gypi')
-rw-r--r--chromium/components/component_updater.gypi81
1 files changed, 81 insertions, 0 deletions
diff --git a/chromium/components/component_updater.gypi b/chromium/components/component_updater.gypi
new file mode 100644
index 00000000000..cc2dff20d7e
--- /dev/null
+++ b/chromium/components/component_updater.gypi
@@ -0,0 +1,81 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ # GN version: //components/component_updater
+ 'target_name': 'component_updater',
+ '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',
+ 'crx_file',
+ 'omaha_query_params',
+ ],
+ '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',
+ ],
+ },
+ ],
+}