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

Side by Side Diff: base/BUILD.gn

Issue 2723423002: Start BindStateBase ref count from 1 instead of 0 (Closed)
Patch Set: rm dead code. +test 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') | base/callback_internal.cc » ('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 2378 matching lines...) Expand 10 before | Expand all | Expand 10 after
2389 args += [ override_build_date ] 2389 args += [ override_build_date ]
2390 } 2390 }
2391 } 2391 }
2392 2392
2393 if (enable_nocompile_tests) { 2393 if (enable_nocompile_tests) {
2394 nocompile_test("base_nocompile_tests") { 2394 nocompile_test("base_nocompile_tests") {
2395 sources = [ 2395 sources = [
2396 "bind_unittest.nc", 2396 "bind_unittest.nc",
2397 "callback_list_unittest.nc", 2397 "callback_list_unittest.nc",
2398 "callback_unittest.nc", 2398 "callback_unittest.nc",
2399 "memory/ref_counted_unittest.nc",
2399 "memory/weak_ptr_unittest.nc", 2400 "memory/weak_ptr_unittest.nc",
2400 "metrics/histogram_unittest.nc", 2401 "metrics/histogram_unittest.nc",
2401 ] 2402 ]
2402 2403
2403 deps = [ 2404 deps = [
2404 ":base", 2405 ":base",
2405 "//base/test:run_all_unittests", 2406 "//base/test:run_all_unittests",
2406 "//testing/gtest", 2407 "//testing/gtest",
2407 ] 2408 ]
2408 } 2409 }
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
2685 } 2686 }
2686 2687
2687 fuzzer_test("base_json_correctness_fuzzer") { 2688 fuzzer_test("base_json_correctness_fuzzer") {
2688 sources = [ 2689 sources = [
2689 "json/correctness_fuzzer.cc", 2690 "json/correctness_fuzzer.cc",
2690 ] 2691 ]
2691 deps = [ 2692 deps = [
2692 ":base", 2693 ":base",
2693 ] 2694 ]
2694 } 2695 }
OLDNEW
« no previous file with comments | « no previous file | base/callback_internal.h » ('j') | base/callback_internal.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698