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

Side by Side Diff: components/precache.gypi

Issue 2229983002: Send the list of used and unused resources for precache (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments, removed timestamp from proto Created 4 years, 4 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_referrer_host_table.cc',
27 'precache/core/precache_referrer_host_table.h',
26 'precache/core/precache_switches.cc', 28 'precache/core/precache_switches.cc',
27 'precache/core/precache_switches.h', 29 'precache/core/precache_switches.h',
28 'precache/core/precache_session_table.cc', 30 'precache/core/precache_session_table.cc',
29 'precache/core/precache_session_table.h', 31 'precache/core/precache_session_table.h',
30 'precache/core/precache_url_table.cc', 32 'precache/core/precache_url_table.cc',
31 'precache/core/precache_url_table.h', 33 'precache/core/precache_url_table.h',
32 ], 34 ],
33 'includes': [ 'precache/precache_defines.gypi', ], 35 'includes': [ 'precache/precache_defines.gypi', ],
34 'direct_dependent_settings': { 36 'direct_dependent_settings': {
35 # Make direct dependents also include the precache defines. This allows 37 # Make direct dependents also include the precache defines. This allows
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 '../base/base.gyp:base_java_test_support', 101 '../base/base.gyp:base_java_test_support',
100 ], 102 ],
101 'variables': { 103 'variables': {
102 'java_in_dir': 'precache/android/javatests', 104 'java_in_dir': 'precache/android/javatests',
103 }, 105 },
104 'includes': [ '../build/java.gypi' ], 106 'includes': [ '../build/java.gypi' ],
105 }], 107 }],
106 }], 108 }],
107 ], 109 ],
108 } 110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698