Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Side by Side Diff: components/component_updater.gypi

Issue 1570873003: Adds a mock for component_updater::ComponentUpdateService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | components/component_updater/BUILD.gn » ('j') | components/component_updater/component_updater_service.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698