| OLD | NEW |
| 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/component_updater | 8 # GN version: //components/component_updater |
| 9 'target_name': 'component_updater', | 9 'target_name': 'component_updater', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 '../base/base.gyp:base', | 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 '../ui/base/ui_base.gyp:ui_base', | 13 '../ui/base/ui_base.gyp:ui_base', |
| 19 '../url/url.gyp:url_lib', | 14 '../url/url.gyp:url_lib', |
| 20 'crx_file', | |
| 21 'update_client', | 15 'update_client', |
| 22 ], | 16 ], |
| 23 'include_dirs': [ | 17 'include_dirs': [ |
| 24 '..', | 18 '..', |
| 25 ], | 19 ], |
| 26 'sources': [ | 20 'sources': [ |
| 27 'component_updater/background_downloader_win.cc', | |
| 28 'component_updater/background_downloader_win.h', | |
| 29 'component_updater/component_patcher.cc', | |
| 30 'component_updater/component_patcher.h', | |
| 31 'component_updater/component_patcher_operation.cc', | |
| 32 'component_updater/component_patcher_operation.h', | |
| 33 'component_updater/component_updater_configurator.h', | 21 'component_updater/component_updater_configurator.h', |
| 34 'component_updater/component_unpacker.cc', | |
| 35 'component_updater/component_unpacker.h', | |
| 36 'component_updater/component_updater_paths.cc', | 22 'component_updater/component_updater_paths.cc', |
| 37 'component_updater/component_updater_paths.h', | 23 'component_updater/component_updater_paths.h', |
| 38 'component_updater/component_updater_ping_manager.cc', | |
| 39 'component_updater/component_updater_ping_manager.h', | |
| 40 'component_updater/component_updater_service.cc', | 24 'component_updater/component_updater_service.cc', |
| 41 'component_updater/component_updater_service.h', | 25 'component_updater/component_updater_service.h', |
| 42 'component_updater/component_updater_switches.cc', | 26 'component_updater/component_updater_switches.cc', |
| 43 'component_updater/component_updater_switches.h', | 27 'component_updater/component_updater_switches.h', |
| 44 'component_updater/component_updater_utils.cc', | |
| 45 'component_updater/component_updater_utils.h', | |
| 46 'component_updater/crx_update_item.h', | |
| 47 'component_updater/crx_downloader.cc', | |
| 48 'component_updater/crx_downloader.h', | |
| 49 'component_updater/default_component_installer.cc', | 28 'component_updater/default_component_installer.cc', |
| 50 'component_updater/default_component_installer.h', | 29 'component_updater/default_component_installer.h', |
| 51 'component_updater/pref_names.cc', | 30 'component_updater/pref_names.cc', |
| 52 'component_updater/pref_names.h', | 31 'component_updater/pref_names.h', |
| 53 'component_updater/request_sender.cc', | |
| 54 'component_updater/request_sender.h', | |
| 55 'component_updater/update_checker.cc', | |
| 56 'component_updater/update_checker.h', | |
| 57 'component_updater/update_response.cc', | |
| 58 'component_updater/update_response.h', | |
| 59 'component_updater/url_fetcher_downloader.cc', | |
| 60 'component_updater/url_fetcher_downloader.h', | |
| 61 ], | |
| 62 }, | |
| 63 { | |
| 64 # GN version: //components/component_updater:test_support | |
| 65 'target_name': 'component_updater_test_support', | |
| 66 'type': 'static_library', | |
| 67 'dependencies': [ | |
| 68 'component_updater', | |
| 69 '../testing/gmock.gyp:gmock', | |
| 70 '../testing/gtest.gyp:gtest', | |
| 71 ], | |
| 72 'sources': [ | |
| 73 'component_updater/test/test_configurator.cc', | |
| 74 'component_updater/test/test_configurator.h', | |
| 75 'component_updater/test/test_installer.cc', | |
| 76 'component_updater/test/test_installer.h', | |
| 77 'component_updater/test/url_request_post_interceptor.cc', | |
| 78 'component_updater/test/url_request_post_interceptor.h', | |
| 79 ], | 32 ], |
| 80 }, | 33 }, |
| 81 ], | 34 ], |
| 82 } | 35 } |
| OLD | NEW |