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

Side by Side Diff: base/BUILD.gn

Issue 2723423002: Start BindStateBase ref count from 1 instead of 0 (Closed)
Patch Set: s/MAKE_REF_COUNT_START_FROM_ONE/REQUIRE_ADOPTION_FOR_REFCOUNTED_TYPE()/ Created 3 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
« no previous file with comments | « no previous file | base/callback_internal.h » ('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 # 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 2390 matching lines...) Expand 10 before | Expand all | Expand 10 after
2401 args += [ override_build_date ] 2401 args += [ override_build_date ]
2402 } 2402 }
2403 } 2403 }
2404 2404
2405 if (enable_nocompile_tests) { 2405 if (enable_nocompile_tests) {
2406 nocompile_test("base_nocompile_tests") { 2406 nocompile_test("base_nocompile_tests") {
2407 sources = [ 2407 sources = [
2408 "bind_unittest.nc", 2408 "bind_unittest.nc",
2409 "callback_list_unittest.nc", 2409 "callback_list_unittest.nc",
2410 "callback_unittest.nc", 2410 "callback_unittest.nc",
2411 "memory/ref_counted_unittest.nc",
2411 "memory/weak_ptr_unittest.nc", 2412 "memory/weak_ptr_unittest.nc",
2412 "metrics/histogram_unittest.nc", 2413 "metrics/histogram_unittest.nc",
2413 ] 2414 ]
2414 2415
2415 deps = [ 2416 deps = [
2416 ":base", 2417 ":base",
2417 "//base/test:run_all_unittests", 2418 "//base/test:run_all_unittests",
2418 "//testing/gtest", 2419 "//testing/gtest",
2419 ] 2420 ]
2420 } 2421 }
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
2705 } 2706 }
2706 2707
2707 fuzzer_test("base_json_correctness_fuzzer") { 2708 fuzzer_test("base_json_correctness_fuzzer") {
2708 sources = [ 2709 sources = [
2709 "json/correctness_fuzzer.cc", 2710 "json/correctness_fuzzer.cc",
2710 ] 2711 ]
2711 deps = [ 2712 deps = [
2712 ":base", 2713 ":base",
2713 ] 2714 ]
2714 } 2715 }
OLDNEW
« no previous file with comments | « no previous file | base/callback_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698