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

Side by Side Diff: components/offline_pages.gypi

Issue 2053163002: [Offline pages] Adding persistent request queue based on SQLite (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing code comments 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',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 # GN: //components/offline_pages/background:background_offliner 50 # GN: //components/offline_pages/background:background_offliner
51 'target_name': 'offline_pages_background_offliner', 51 'target_name': 'offline_pages_background_offliner',
52 'type': 'static_library', 52 'type': 'static_library',
53 'include_dirs': [ 53 'include_dirs': [
54 '..', 54 '..',
55 '../..', 55 '../..',
56 ], 56 ],
57 'dependencies': [ 57 'dependencies': [
58 '../base/base.gyp:base', 58 '../base/base.gyp:base',
59 '../net/net.gyp:net', 59 '../net/net.gyp:net',
60 '../sql/sql.gyp:sql',
60 '../url/url.gyp:url_lib', 61 '../url/url.gyp:url_lib',
61 'keyed_service_core', 62 'keyed_service_core',
62 ], 63 ],
63 'sources': [ 64 'sources': [
64 'offline_pages/background/device_conditions.h', 65 'offline_pages/background/device_conditions.h',
65 'offline_pages/background/offliner.h', 66 'offline_pages/background/offliner.h',
66 'offline_pages/background/offliner_factory.h', 67 'offline_pages/background/offliner_factory.h',
67 'offline_pages/background/offliner_policy.h', 68 'offline_pages/background/offliner_policy.h',
68 'offline_pages/background/request_coordinator.cc', 69 'offline_pages/background/request_coordinator.cc',
69 'offline_pages/background/request_coordinator.h', 70 'offline_pages/background/request_coordinator.h',
70 'offline_pages/background/request_picker.cc', 71 'offline_pages/background/request_picker.cc',
71 'offline_pages/background/request_picker.h', 72 'offline_pages/background/request_picker.h',
72 'offline_pages/background/request_queue.cc', 73 'offline_pages/background/request_queue.cc',
73 'offline_pages/background/request_queue.h', 74 'offline_pages/background/request_queue.h',
74 'offline_pages/background/request_queue_in_memory_store.cc', 75 'offline_pages/background/request_queue_in_memory_store.cc',
75 'offline_pages/background/request_queue_in_memory_store.h', 76 'offline_pages/background/request_queue_in_memory_store.h',
76 'offline_pages/background/request_queue_store.h', 77 'offline_pages/background/request_queue_store.h',
78 'offline_pages/background/request_queue_store_sql.cc',
79 'offline_pages/background/request_queue_store_sql.h',
77 'offline_pages/background/save_page_request.cc', 80 'offline_pages/background/save_page_request.cc',
78 'offline_pages/background/save_page_request.h', 81 'offline_pages/background/save_page_request.h',
79 'offline_pages/background/scheduler.h', 82 'offline_pages/background/scheduler.h',
80 ], 83 ],
81 }, 84 },
82 { 85 {
83 # GN version: //components/offline_pages:test_support 86 # GN version: //components/offline_pages:test_support
84 'target_name': 'offline_pages_test_support', 87 'target_name': 'offline_pages_test_support',
85 'type': 'static_library', 88 'type': 'static_library',
86 'dependencies': [ 89 'dependencies': [
(...skipping 21 matching lines...) Expand all
108 'type': 'none', 111 'type': 'none',
109 'variables': { 112 'variables': {
110 'source_file': 'offline_pages/offline_page_types.h', 113 'source_file': 'offline_pages/offline_page_types.h',
111 }, 114 },
112 'includes': [ '../build/android/java_cpp_enum.gypi' ], 115 'includes': [ '../build/android/java_cpp_enum.gypi' ],
113 }, 116 },
114 ], 117 ],
115 }], 118 }],
116 ], 119 ],
117 } 120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698