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 18 matching lines...) Expand all Loading... |
29 'component_updater/component_updater_url_constants.cc', | 29 'component_updater/component_updater_url_constants.cc', |
30 'component_updater/component_updater_url_constants.h', | 30 'component_updater/component_updater_url_constants.h', |
31 'component_updater/configurator_impl.cc', | 31 'component_updater/configurator_impl.cc', |
32 'component_updater/configurator_impl.h', | 32 'component_updater/configurator_impl.h', |
33 'component_updater/default_component_installer.cc', | 33 'component_updater/default_component_installer.cc', |
34 'component_updater/default_component_installer.h', | 34 'component_updater/default_component_installer.h', |
35 'component_updater/pref_names.cc', | 35 'component_updater/pref_names.cc', |
36 'component_updater/pref_names.h', | 36 'component_updater/pref_names.h', |
37 'component_updater/timer.cc', | 37 'component_updater/timer.cc', |
38 'component_updater/timer.h', | 38 'component_updater/timer.h', |
| 39 'component_updater/updater_state_win.cc', |
| 40 'component_updater/updater_state_win.h', |
39 ], | 41 ], |
40 }, | 42 }, |
41 { | 43 { |
42 # GN version: //components/component_updater:test_support | 44 # GN version: //components/component_updater:test_support |
43 'target_name': 'component_updater_test_support', | 45 'target_name': 'component_updater_test_support', |
44 'type': 'static_library', | 46 'type': 'static_library', |
45 'dependencies': [ | 47 'dependencies': [ |
46 '../base/base.gyp:base', | 48 '../base/base.gyp:base', |
47 '../testing/gmock.gyp:gmock', | 49 '../testing/gmock.gyp:gmock', |
48 'component_updater', | 50 'component_updater', |
49 ], | 51 ], |
50 'include_dirs': [ | 52 'include_dirs': [ |
51 '..', | 53 '..', |
52 ], | 54 ], |
53 'sources': [ | 55 'sources': [ |
54 'component_updater/mock_component_updater_service.cc', | 56 'component_updater/mock_component_updater_service.cc', |
55 'component_updater/mock_component_updater_service.h', | 57 'component_updater/mock_component_updater_service.h', |
56 ], | 58 ], |
57 }, | 59 }, |
58 ], | 60 ], |
59 } | 61 } |
OLD | NEW |