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

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: rebase Created 4 years, 5 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/offline_pages/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '../sql/sql.gyp:sql', 64 '../sql/sql.gyp:sql',
61 '../url/url.gyp:url_lib', 65 '../url/url.gyp:url_lib',
62 'keyed_service_core', 66 'keyed_service_core',
63 ], 67 ],
64 'sources': [ 68 'sources': [
65 'offline_pages/background/device_conditions.h', 69 'offline_pages/background/device_conditions.h',
66 'offline_pages/background/offliner.h', 70 'offline_pages/background/offliner.h',
67 'offline_pages/background/offliner_factory.h', 71 'offline_pages/background/offliner_factory.h',
68 'offline_pages/background/offliner_policy.h', 72 'offline_pages/background/offliner_policy.h',
69 'offline_pages/background/request_coordinator.cc', 73 'offline_pages/background/request_coordinator.cc',
70 'offline_pages/background/request_coordinator.h', 74 'offline_pages/background/request_coordinator.h',
75 'offline_pages/background/request_coordinator_event_logger.cc',
76 'offline_pages/background/request_coordinator_event_logger.h',
71 'offline_pages/background/request_picker.cc', 77 'offline_pages/background/request_picker.cc',
72 'offline_pages/background/request_picker.h', 78 'offline_pages/background/request_picker.h',
73 'offline_pages/background/request_queue.cc', 79 'offline_pages/background/request_queue.cc',
74 'offline_pages/background/request_queue.h', 80 'offline_pages/background/request_queue.h',
75 'offline_pages/background/request_queue_in_memory_store.cc', 81 'offline_pages/background/request_queue_in_memory_store.cc',
76 'offline_pages/background/request_queue_in_memory_store.h', 82 'offline_pages/background/request_queue_in_memory_store.h',
77 'offline_pages/background/request_queue_store.h', 83 'offline_pages/background/request_queue_store.h',
78 'offline_pages/background/request_queue_store_sql.cc', 84 'offline_pages/background/request_queue_store_sql.cc',
79 'offline_pages/background/request_queue_store_sql.h', 85 'offline_pages/background/request_queue_store_sql.h',
80 'offline_pages/background/save_page_request.cc', 86 'offline_pages/background/save_page_request.cc',
(...skipping 30 matching lines...) Expand all
111 'type': 'none', 117 'type': 'none',
112 'variables': { 118 'variables': {
113 'source_file': 'offline_pages/offline_page_types.h', 119 'source_file': 'offline_pages/offline_page_types.h',
114 }, 120 },
115 'includes': [ '../build/android/java_cpp_enum.gypi' ], 121 'includes': [ '../build/android/java_cpp_enum.gypi' ],
116 }, 122 },
117 ], 123 ],
118 }], 124 }],
119 ], 125 ],
120 } 126 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/offline_pages/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698