| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |