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

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: Addressing code review feedback from petewil 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/offliner.h', 65 'offline_pages/background/offliner.h',
65 'offline_pages/background/offliner_factory.h', 66 'offline_pages/background/offliner_factory.h',
66 'offline_pages/background/offliner_policy.h', 67 'offline_pages/background/offliner_policy.h',
67 'offline_pages/background/request_coordinator.cc', 68 'offline_pages/background/request_coordinator.cc',
68 'offline_pages/background/request_coordinator.h', 69 'offline_pages/background/request_coordinator.h',
69 'offline_pages/background/request_picker.cc', 70 'offline_pages/background/request_picker.cc',
70 'offline_pages/background/request_picker.h', 71 'offline_pages/background/request_picker.h',
71 'offline_pages/background/request_queue.cc', 72 'offline_pages/background/request_queue.cc',
72 'offline_pages/background/request_queue.h', 73 'offline_pages/background/request_queue.h',
73 'offline_pages/background/request_queue_in_memory_store.cc', 74 'offline_pages/background/request_queue_in_memory_store.cc',
74 'offline_pages/background/request_queue_in_memory_store.h', 75 'offline_pages/background/request_queue_in_memory_store.h',
75 'offline_pages/background/request_queue_store.h', 76 'offline_pages/background/request_queue_store.h',
77 'offline_pages/background/request_queue_store_sql.cc',
78 'offline_pages/background/request_queue_store_sql.h',
76 'offline_pages/background/save_page_request.cc', 79 'offline_pages/background/save_page_request.cc',
77 'offline_pages/background/save_page_request.h', 80 'offline_pages/background/save_page_request.h',
78 'offline_pages/background/scheduler.h', 81 'offline_pages/background/scheduler.h',
79 ], 82 ],
80 }, 83 },
81 { 84 {
82 # GN version: //components/offline_pages:test_support 85 # GN version: //components/offline_pages:test_support
83 'target_name': 'offline_pages_test_support', 86 'target_name': 'offline_pages_test_support',
84 'type': 'static_library', 87 'type': 'static_library',
85 'dependencies': [ 88 'dependencies': [
(...skipping 21 matching lines...) Expand all
107 'type': 'none', 110 'type': 'none',
108 'variables': { 111 'variables': {
109 'source_file': 'offline_pages/offline_page_types.h', 112 'source_file': 'offline_pages/offline_page_types.h',
110 }, 113 },
111 'includes': [ '../build/android/java_cpp_enum.gypi' ], 114 'includes': [ '../build/android/java_cpp_enum.gypi' ],
112 }, 115 },
113 ], 116 ],
114 }], 117 }],
115 ], 118 ],
116 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698