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', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 'component_updater/component_updater_switches.h', | 42 'component_updater/component_updater_switches.h', |
43 'component_updater/component_updater_utils.cc', | 43 'component_updater/component_updater_utils.cc', |
44 'component_updater/component_updater_utils.h', | 44 'component_updater/component_updater_utils.h', |
45 'component_updater/crx_update_item.h', | 45 'component_updater/crx_update_item.h', |
46 'component_updater/crx_downloader.cc', | 46 'component_updater/crx_downloader.cc', |
47 'component_updater/crx_downloader.h', | 47 'component_updater/crx_downloader.h', |
48 'component_updater/default_component_installer.cc', | 48 'component_updater/default_component_installer.cc', |
49 'component_updater/default_component_installer.h', | 49 'component_updater/default_component_installer.h', |
50 'component_updater/pref_names.cc', | 50 'component_updater/pref_names.cc', |
51 'component_updater/pref_names.h', | 51 'component_updater/pref_names.h', |
| 52 'component_updater/request_sender.cc', |
| 53 'component_updater/request_sender.h', |
52 'component_updater/update_checker.cc', | 54 'component_updater/update_checker.cc', |
53 'component_updater/update_checker.h', | 55 'component_updater/update_checker.h', |
54 'component_updater/update_response.cc', | 56 'component_updater/update_response.cc', |
55 'component_updater/update_response.h', | 57 'component_updater/update_response.h', |
56 'component_updater/url_fetcher_downloader.cc', | 58 'component_updater/url_fetcher_downloader.cc', |
57 'component_updater/url_fetcher_downloader.h', | 59 'component_updater/url_fetcher_downloader.h', |
58 ], | 60 ], |
59 }, | 61 }, |
60 { | 62 { |
61 # GN version: //components/component_updater:test_support | 63 # GN version: //components/component_updater:test_support |
62 'target_name': 'component_updater_test_support', | 64 'target_name': 'component_updater_test_support', |
63 'type': 'static_library', | 65 'type': 'static_library', |
64 'dependencies': [ | 66 'dependencies': [ |
65 'component_updater', | 67 'component_updater', |
66 '../testing/gmock.gyp:gmock', | 68 '../testing/gmock.gyp:gmock', |
67 '../testing/gtest.gyp:gtest', | 69 '../testing/gtest.gyp:gtest', |
68 ], | 70 ], |
69 'sources': [ | 71 'sources': [ |
70 'component_updater/test/test_configurator.cc', | 72 'component_updater/test/test_configurator.cc', |
71 'component_updater/test/test_configurator.h', | 73 'component_updater/test/test_configurator.h', |
72 'component_updater/test/test_installer.cc', | 74 'component_updater/test/test_installer.cc', |
73 'component_updater/test/test_installer.h', | 75 'component_updater/test/test_installer.h', |
74 'component_updater/test/url_request_post_interceptor.cc', | 76 'component_updater/test/url_request_post_interceptor.cc', |
75 'component_updater/test/url_request_post_interceptor.h', | 77 'component_updater/test/url_request_post_interceptor.h', |
76 ], | 78 ], |
77 }, | 79 }, |
78 ], | 80 ], |
79 } | 81 } |
OLD | NEW |