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 20 matching lines...) Expand all Loading... |
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 ], | 39 ], |
40 }, | 40 }, |
| 41 { |
| 42 # GN version: //components/component_updater:test_support |
| 43 'target_name': 'component_updater_test_support', |
| 44 'type': 'static_library', |
| 45 'dependencies': [ |
| 46 'component_updater', |
| 47 '../testing/gmock.gyp:gmock', |
| 48 ], |
| 49 'include_dirs': [ |
| 50 '..', |
| 51 ], |
| 52 'sources': [ |
| 53 'component_updater/mock_component_updater_service.cc', |
| 54 'component_updater/mock_component_updater_service.h', |
| 55 ], |
| 56 }, |
41 ], | 57 ], |
42 } | 58 } |
OLD | NEW |