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

Side by Side Diff: ios/web/ios_web.gyp

Issue 1043263003: Implemented AddAllocWithZoneMethod to override allocWithZone: on demand. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'ios_web', 11 'target_name': 'ios_web',
12 'type': 'static_library', 12 'type': 'static_library',
13 'include_dirs': [ 13 'include_dirs': [
14 '../..', 14 '../..',
15 ], 15 ],
16 'dependencies': [ 16 'dependencies': [
17 'ios_web_core', 17 'ios_web_core',
18 'js_resources', 18 'js_resources',
19 'user_agent', 19 'user_agent',
20 '../../base/base.gyp:base', 20 '../../base/base.gyp:base',
21 '../../content/content.gyp:content_browser', 21 '../../content/content.gyp:content_browser',
22 '../../net/net.gyp:net', 22 '../../net/net.gyp:net',
23 '../../ui/base/ui_base.gyp:ui_base', 23 '../../ui/base/ui_base.gyp:ui_base',
24 '../../ui/gfx/gfx.gyp:gfx', 24 '../../ui/gfx/gfx.gyp:gfx',
25 ], 25 ],
26 'sources': [ 26 'sources': [
27 'alloc_with_zone_interceptor.h',
28 'alloc_with_zone_interceptor.mm',
27 'browser_state.cc', 29 'browser_state.cc',
28 'load_committed_details.cc', 30 'load_committed_details.cc',
29 'navigation/navigation_item_impl.h', 31 'navigation/navigation_item_impl.h',
30 'navigation/navigation_item_impl.mm', 32 'navigation/navigation_item_impl.mm',
31 'navigation/nscoder_util.h', 33 'navigation/nscoder_util.h',
32 'navigation/nscoder_util.mm', 34 'navigation/nscoder_util.mm',
33 'navigation/time_smoother.cc', 35 'navigation/time_smoother.cc',
34 'navigation/time_smoother.h', 36 'navigation/time_smoother.h',
35 'net/cert_policy.cc', 37 'net/cert_policy.cc',
36 'net/certificate_policy_cache.cc', 38 'net/certificate_policy_cache.cc',
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 'dependencies': [ 265 'dependencies': [
264 '../../base/base.gyp:base' 266 '../../base/base.gyp:base'
265 ], 267 ],
266 'sources': [ 268 'sources': [
267 'public/user_agent.h', 269 'public/user_agent.h',
268 'public/user_agent.mm', 270 'public/user_agent.mm',
269 ], 271 ],
270 }, 272 },
271 ], 273 ],
272 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698