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

Side by Side Diff: components/precache.gypi

Issue 1176253002: Fix IsPrecachingAllowed() to check Sync instead of Data Saver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweaks per bengr. Created 5 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/precache/content/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 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/content 8 # GN Version: //components/precache/content
9 'target_name': 'precache_content', 9 'target_name': 'precache_content',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 'precache_core', 12 'precache_core',
13 '../base/base.gyp:base', 13 '../base/base.gyp:base',
14 '../content/content.gyp:content_browser', 14 '../content/content.gyp:content_browser',
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 # Note: sources list duplicated in GN build. 21 # Note: sources list duplicated in GN build.
22 'precache/content/precache_manager.cc', 22 'precache/content/precache_manager.cc',
23 'precache/content/precache_manager.h', 23 'precache/content/precache_manager.h',
24 'precache/content/precache_manager_factory.cc',
25 'precache/content/precache_manager_factory.h',
26 ], 24 ],
27 }, 25 },
28 { 26 {
29 # GN version: //components/precache/core 27 # GN version: //components/precache/core
30 'target_name': 'precache_core', 28 'target_name': 'precache_core',
31 'type': 'static_library', 29 'type': 'static_library',
32 'dependencies': [ 30 'dependencies': [
33 'precache_core_proto', 31 'precache_core_proto',
34 '../base/base.gyp:base', 32 '../base/base.gyp:base',
35 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 33 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 '../base/base.gyp:base_java_test_support', 88 '../base/base.gyp:base_java_test_support',
91 ], 89 ],
92 'variables': { 90 'variables': {
93 'java_in_dir': 'precache/android/javatests', 91 'java_in_dir': 'precache/android/javatests',
94 }, 92 },
95 'includes': [ '../build/java.gypi' ], 93 'includes': [ '../build/java.gypi' ],
96 }], 94 }],
97 }], 95 }],
98 ], 96 ],
99 } 97 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/precache/content/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698