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

Side by Side Diff: components/precache.gypi

Issue 1961153003: Add pause/resume functionality to precache (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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/precache/core 8 # GN version: //components/precache/core
9 'target_name': 'precache_core', 9 'target_name': 'precache_core',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 'precache_core_proto', 12 'precache_core_proto',
13 '../base/base.gyp:base', 13 '../base/base.gyp:base',
14 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 14 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
15 '../url/url.gyp:url_lib', 15 '../url/url.gyp:url_lib',
16 ], 16 ],
17 'include_dirs': [ 17 'include_dirs': [
18 '..', 18 '..',
19 ], 19 ],
20 'sources': [ 20 'sources': [
21 'precache/core/fetcher_pool.h', 21 'precache/core/fetcher_pool.h',
22 'precache/core/precache_database.cc', 22 'precache/core/precache_database.cc',
23 'precache/core/precache_database.h', 23 'precache/core/precache_database.h',
24 'precache/core/precache_fetcher.cc', 24 'precache/core/precache_fetcher.cc',
25 'precache/core/precache_fetcher.h', 25 'precache/core/precache_fetcher.h',
26 'precache/core/precache_switches.cc', 26 'precache/core/precache_switches.cc',
27 'precache/core/precache_switches.h', 27 'precache/core/precache_switches.h',
28 'precache/core/precache_session_tables.cc',
29 'precache/core/precache_session_tables.h',
28 'precache/core/precache_url_table.cc', 30 'precache/core/precache_url_table.cc',
29 'precache/core/precache_url_table.h', 31 'precache/core/precache_url_table.h',
30 ], 32 ],
31 'includes': [ 'precache/precache_defines.gypi', ], 33 'includes': [ 'precache/precache_defines.gypi', ],
32 'direct_dependent_settings': { 34 'direct_dependent_settings': {
33 # Make direct dependents also include the precache defines. This allows 35 # Make direct dependents also include the precache defines. This allows
34 # the unit tests to use these defines. 36 # the unit tests to use these defines.
35 'includes': [ 'precache/precache_defines.gypi', ], 37 'includes': [ 'precache/precache_defines.gypi', ],
36 }, 38 },
37 }, 39 },
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 '../base/base.gyp:base_java_test_support', 97 '../base/base.gyp:base_java_test_support',
96 ], 98 ],
97 'variables': { 99 'variables': {
98 'java_in_dir': 'precache/android/javatests', 100 'java_in_dir': 'precache/android/javatests',
99 }, 101 },
100 'includes': [ '../build/java.gypi' ], 102 'includes': [ '../build/java.gypi' ],
101 }], 103 }],
102 }], 104 }],
103 ], 105 ],
104 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698