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

Side by Side Diff: url/url.gyp

Issue 1647453002: allocator cleanup: remove dependencies on allocator from all targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pure rebase Created 4 years, 10 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 | « url/BUILD.gn ('k') | no next file » | 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'url_srcs.gypi', 10 'url_srcs.gypi',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'sources': [ 48 'sources': [
49 'gurl_unittest.cc', 49 'gurl_unittest.cc',
50 'origin_unittest.cc', 50 'origin_unittest.cc',
51 'scheme_host_port_unittest.cc', 51 'scheme_host_port_unittest.cc',
52 'url_canon_icu_unittest.cc', 52 'url_canon_icu_unittest.cc',
53 'url_canon_unittest.cc', 53 'url_canon_unittest.cc',
54 'url_parse_unittest.cc', 54 'url_parse_unittest.cc',
55 'url_test_utils.h', 55 'url_test_utils.h',
56 'url_util_unittest.cc', 56 'url_util_unittest.cc',
57 ], 57 ],
58 'conditions': [
59 ['os_posix==1 and OS!="mac" and OS!="ios" and use_allocator!="none"',
60 {
61 'dependencies': [
62 '../base/allocator/allocator.gyp:allocator',
63 ],
64 }
65 ],
66 ],
67 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 58 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
68 'msvs_disabled_warnings': [4267, ], 59 'msvs_disabled_warnings': [4267, ],
69 }, 60 },
70 ], 61 ],
71 'conditions': [ 62 'conditions': [
72 ['OS=="android"', { 63 ['OS=="android"', {
73 'targets': [ 64 'targets': [
74 { 65 {
75 'target_name': 'url_jni_headers', 66 'target_name': 'url_jni_headers',
76 'type': 'none', 67 'type': 'none',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 '../build/isolate.gypi', 127 '../build/isolate.gypi',
137 ], 128 ],
138 'sources': [ 129 'sources': [
139 'url_unittests.isolate', 130 'url_unittests.isolate',
140 ], 131 ],
141 }, 132 },
142 ], 133 ],
143 }], 134 }],
144 ], 135 ],
145 } 136 }
OLDNEW
« no previous file with comments | « url/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698