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

Side by Side Diff: components/offline_pages.gypi

Issue 2089413002: [Offline Pages] Create a event/activity logger (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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: //components/offline_pages:offline_pages 8 # GN: //components/offline_pages:offline_pages
9 'target_name': 'offline_pages', 9 'target_name': 'offline_pages',
10 'type': 'static_library', 10 'type': 'static_library',
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 '../base/base.gyp:base', 15 '../base/base.gyp:base',
16 '../net/net.gyp:net', 16 '../net/net.gyp:net',
17 '../url/url.gyp:url_lib', 17 '../url/url.gyp:url_lib',
18 '../sql/sql.gyp:sql', 18 '../sql/sql.gyp:sql',
19 'keyed_service_core', 19 'keyed_service_core',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 'offline_pages/archive_manager.cc', 22 'offline_pages/archive_manager.cc',
23 'offline_pages/archive_manager.h', 23 'offline_pages/archive_manager.h',
24 'offline_pages/client_namespace_constants.cc', 24 'offline_pages/client_namespace_constants.cc',
25 'offline_pages/client_namespace_constants.h', 25 'offline_pages/client_namespace_constants.h',
26 'offline_pages/client_policy_controller.cc', 26 'offline_pages/client_policy_controller.cc',
27 'offline_pages/client_policy_controller.h', 27 'offline_pages/client_policy_controller.h',
28 'offline_pages/offline_event_logger.cc',
29 'offline_pages/offline_event_logger.h',
28 'offline_pages/offline_page_archiver.h', 30 'offline_pages/offline_page_archiver.h',
29 'offline_pages/offline_page_client_policy.h', 31 'offline_pages/offline_page_client_policy.h',
30 'offline_pages/offline_page_feature.cc', 32 'offline_pages/offline_page_feature.cc',
31 'offline_pages/offline_page_feature.h', 33 'offline_pages/offline_page_feature.h',
32 'offline_pages/offline_page_item.cc', 34 'offline_pages/offline_page_item.cc',
33 'offline_pages/offline_page_item.h', 35 'offline_pages/offline_page_item.h',
34 'offline_pages/offline_page_metadata_store.cc', 36 'offline_pages/offline_page_metadata_store.cc',
35 'offline_pages/offline_page_metadata_store.h', 37 'offline_pages/offline_page_metadata_store.h',
38 'offline_pages/offline_page_metadata_store_sql.cc',
39 'offline_pages/offline_page_metadata_store_sql.h',
36 'offline_pages/offline_page_model.cc', 40 'offline_pages/offline_page_model.cc',
37 'offline_pages/offline_page_model.h', 41 'offline_pages/offline_page_model.h',
42 'offline_pages/offline_page_model_event_logger.cc',
43 'offline_pages/offline_page_model_event_logger.h',
38 'offline_pages/offline_page_model_impl.cc', 44 'offline_pages/offline_page_model_impl.cc',
39 'offline_pages/offline_page_model_impl.h', 45 'offline_pages/offline_page_model_impl.h',
40 'offline_pages/offline_page_storage_manager.cc', 46 'offline_pages/offline_page_storage_manager.cc',
41 'offline_pages/offline_page_storage_manager.h', 47 'offline_pages/offline_page_storage_manager.h',
42 'offline_pages/offline_page_types.h', 48 'offline_pages/offline_page_types.h',
43 'offline_pages/snapshot_controller.cc', 49 'offline_pages/snapshot_controller.cc',
44 'offline_pages/snapshot_controller.h', 50 'offline_pages/snapshot_controller.h',
45 'offline_pages/offline_page_metadata_store_sql.cc',
46 'offline_pages/offline_page_metadata_store_sql.h',
47 ], 51 ],
48 }, 52 },
49 { 53 {
50 # GN: //components/offline_pages/background:background_offliner 54 # GN: //components/offline_pages/background:background_offliner
51 'target_name': 'offline_pages_background_offliner', 55 'target_name': 'offline_pages_background_offliner',
52 'type': 'static_library', 56 'type': 'static_library',
53 'include_dirs': [ 57 'include_dirs': [
54 '..', 58 '..',
55 '../..', 59 '../..',
56 ], 60 ],
57 'dependencies': [ 61 'dependencies': [
58 '../base/base.gyp:base', 62 '../base/base.gyp:base',
59 '../net/net.gyp:net', 63 '../net/net.gyp:net',
60 '../url/url.gyp:url_lib', 64 '../url/url.gyp:url_lib',
61 'keyed_service_core', 65 'keyed_service_core',
62 ], 66 ],
63 'sources': [ 67 'sources': [
64 'offline_pages/background/device_conditions.h', 68 'offline_pages/background/device_conditions.h',
65 'offline_pages/background/offliner.h', 69 'offline_pages/background/offliner.h',
66 'offline_pages/background/offliner_factory.h', 70 'offline_pages/background/offliner_factory.h',
67 'offline_pages/background/offliner_policy.h', 71 'offline_pages/background/offliner_policy.h',
68 'offline_pages/background/request_coordinator.cc', 72 'offline_pages/background/request_coordinator.cc',
69 'offline_pages/background/request_coordinator.h', 73 'offline_pages/background/request_coordinator.h',
74 'offline_pages/background/request_coordinator_event_logger.cc',
75 'offline_pages/background/request_coordinator_event_logger.h',
70 'offline_pages/background/request_picker.cc', 76 'offline_pages/background/request_picker.cc',
71 'offline_pages/background/request_picker.h', 77 'offline_pages/background/request_picker.h',
72 'offline_pages/background/request_queue.cc', 78 'offline_pages/background/request_queue.cc',
73 'offline_pages/background/request_queue.h', 79 'offline_pages/background/request_queue.h',
74 'offline_pages/background/request_queue_in_memory_store.cc', 80 'offline_pages/background/request_queue_in_memory_store.cc',
75 'offline_pages/background/request_queue_in_memory_store.h', 81 'offline_pages/background/request_queue_in_memory_store.h',
76 'offline_pages/background/request_queue_store.h', 82 'offline_pages/background/request_queue_store.h',
77 'offline_pages/background/save_page_request.cc', 83 'offline_pages/background/save_page_request.cc',
78 'offline_pages/background/save_page_request.h', 84 'offline_pages/background/save_page_request.h',
79 'offline_pages/background/scheduler.h', 85 'offline_pages/background/scheduler.h',
(...skipping 28 matching lines...) Expand all
108 'type': 'none', 114 'type': 'none',
109 'variables': { 115 'variables': {
110 'source_file': 'offline_pages/offline_page_types.h', 116 'source_file': 'offline_pages/offline_page_types.h',
111 }, 117 },
112 'includes': [ '../build/android/java_cpp_enum.gypi' ], 118 'includes': [ '../build/android/java_cpp_enum.gypi' ],
113 }, 119 },
114 ], 120 ],
115 }], 121 }],
116 ], 122 ],
117 } 123 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698