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

Side by Side Diff: components/web_cache.gypi

Issue 1462853002: [clean-up] Remove allocator.gyp dependency from library targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add to chrome_child_dll Created 5 years, 1 month 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_renderer.gypi ('k') | content/browser/gpu/test_support_gpu.gypi » ('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 (c) 2014 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2014 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 'target_name': 'web_cache_common', 8 'target_name': 'web_cache_common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 13 matching lines...) Expand all
24 '<(DEPTH)/content/content.gyp:content_browser', 24 '<(DEPTH)/content/content.gyp:content_browser',
25 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', 25 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
26 'web_cache_common', 26 'web_cache_common',
27 ], 27 ],
28 'sources': [ 28 'sources': [
29 'web_cache/browser/web_cache_manager.cc', 29 'web_cache/browser/web_cache_manager.cc',
30 'web_cache/browser/web_cache_manager.h', 30 'web_cache/browser/web_cache_manager.h',
31 ], 31 ],
32 # Disable c4267 warnings until we fix size_t to int truncations. 32 # Disable c4267 warnings until we fix size_t to int truncations.
33 'msvs_disabled_warnings': [ 4267, ], 33 'msvs_disabled_warnings': [ 4267, ],
34 'conditions': [
35 ['OS=="win" and win_use_allocator_shim==1', {
36 'dependencies': [
37 '../base/allocator/allocator.gyp:allocator',
38 ],
39 }],
40 ],
41 }, 34 },
42 { 35 {
43 'target_name': 'web_cache_renderer', 36 'target_name': 'web_cache_renderer',
44 'type': 'static_library', 37 'type': 'static_library',
45 'dependencies': [ 38 'dependencies': [
46 '<(DEPTH)/base/base.gyp:base', 39 '<(DEPTH)/base/base.gyp:base',
47 '<(DEPTH)/content/content.gyp:content_renderer', 40 '<(DEPTH)/content/content.gyp:content_renderer',
48 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', 41 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
49 'web_cache_common', 42 'web_cache_common',
50 ], 43 ],
51 'sources': [ 44 'sources': [
52 'web_cache/renderer/web_cache_render_process_observer.cc', 45 'web_cache/renderer/web_cache_render_process_observer.cc',
53 'web_cache/renderer/web_cache_render_process_observer.h', 46 'web_cache/renderer/web_cache_render_process_observer.h',
54 ], 47 ],
55 }, 48 },
56 ], 49 ],
57 } 50 }
OLDNEW
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | content/browser/gpu/test_support_gpu.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698