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

Side by Side Diff: url/BUILD.gn

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 | « ui/views/views.gyp ('k') | url/url.gyp » ('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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 } 9 }
10 10
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 "url_canon_icu_unittest.cc", 132 "url_canon_icu_unittest.cc",
133 "url_canon_unittest.cc", 133 "url_canon_unittest.cc",
134 "url_parse_unittest.cc", 134 "url_parse_unittest.cc",
135 "url_test_utils.h", 135 "url_test_utils.h",
136 "url_util_unittest.cc", 136 "url_util_unittest.cc",
137 ] 137 ]
138 138
139 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 139 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
140 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 140 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
141 141
142 #if (is_posix && !is_mac && !is_ios) {
143 # if (use_allocator!="none") {
144 # deps += "//base/allocator"
145 # }
146 #}
147
148 deps = [ 142 deps = [
149 ":url", 143 ":url",
150 "//base", 144 "//base",
151 "//base/test:run_all_unittests", 145 "//base/test:run_all_unittests",
152 "//testing/gtest", 146 "//testing/gtest",
153 "//third_party/icu:icuuc", 147 "//third_party/icu:icuuc",
154 ] 148 ]
155 } 149 }
156 } 150 }
OLDNEW
« no previous file with comments | « ui/views/views.gyp ('k') | url/url.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698