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

Side by Side Diff: base/BUILD.gn

Issue 2907563002: allocator/Windows: delete the old non-unified allocator-shim (Closed)
Patch Set: Created 3 years, 7 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 | « no previous file | base/allocator/BUILD.gn » ('j') | base/allocator/BUILD.gn » ('J')
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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 2274 matching lines...) Expand 10 before | Expand all | Expand 10 after
2285 ] 2285 ]
2286 2286
2287 if (is_ios || is_mac) { 2287 if (is_ios || is_mac) {
2288 deps += [ ":base_unittests_arc" ] 2288 deps += [ ":base_unittests_arc" ]
2289 } 2289 }
2290 2290
2291 public_deps = [ 2291 public_deps = [
2292 ":base_unittests_bundle_data", 2292 ":base_unittests_bundle_data",
2293 ] 2293 ]
2294 2294
2295 # Some unittests depend on the ALLOCATOR_SHIM macro.
2296 configs += [ "//base/allocator:allocator_shim_define" ]
2297
2298 data = [ 2295 data = [
2299 "test/data/", 2296 "test/data/",
2300 ] 2297 ]
2301 2298
2302 # Allow more direct string conversions on platforms with native utf8 2299 # Allow more direct string conversions on platforms with native utf8
2303 # strings 2300 # strings
2304 if (is_mac || is_ios || is_chromeos || is_chromecast) { 2301 if (is_mac || is_ios || is_chromeos || is_chromecast) {
2305 defines += [ "SYSTEM_NATIVE_UTF8" ] 2302 defines += [ "SYSTEM_NATIVE_UTF8" ]
2306 } 2303 }
2307 2304
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
2764 } 2761 }
2765 2762
2766 fuzzer_test("base_json_correctness_fuzzer") { 2763 fuzzer_test("base_json_correctness_fuzzer") {
2767 sources = [ 2764 sources = [
2768 "json/correctness_fuzzer.cc", 2765 "json/correctness_fuzzer.cc",
2769 ] 2766 ]
2770 deps = [ 2767 deps = [
2771 ":base", 2768 ":base",
2772 ] 2769 ]
2773 } 2770 }
OLDNEW
« no previous file with comments | « no previous file | base/allocator/BUILD.gn » ('j') | base/allocator/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698