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 2444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2455 | 2455 |
2456 if (enable_nocompile_tests) { | 2456 if (enable_nocompile_tests) { |
2457 nocompile_test("base_nocompile_tests") { | 2457 nocompile_test("base_nocompile_tests") { |
2458 sources = [ | 2458 sources = [ |
2459 "bind_unittest.nc", | 2459 "bind_unittest.nc", |
2460 "callback_list_unittest.nc", | 2460 "callback_list_unittest.nc", |
2461 "callback_unittest.nc", | 2461 "callback_unittest.nc", |
2462 "containers/span_unittest.nc", | 2462 "containers/span_unittest.nc", |
2463 "memory/ref_counted_unittest.nc", | 2463 "memory/ref_counted_unittest.nc", |
2464 "memory/weak_ptr_unittest.nc", | 2464 "memory/weak_ptr_unittest.nc", |
| 2465 "metrics/field_trial_params_unittest.nc", |
2465 "metrics/histogram_unittest.nc", | 2466 "metrics/histogram_unittest.nc", |
2466 "strings/string16_unittest.nc", | 2467 "strings/string16_unittest.nc", |
2467 "task_scheduler/task_traits_unittest.nc", | 2468 "task_scheduler/task_traits_unittest.nc", |
2468 ] | 2469 ] |
2469 | 2470 |
2470 deps = [ | 2471 deps = [ |
2471 ":base", | 2472 ":base", |
2472 "//base/test:run_all_unittests", | 2473 "//base/test:run_all_unittests", |
2473 "//testing/gtest", | 2474 "//testing/gtest", |
2474 ] | 2475 ] |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2810 } | 2811 } |
2811 | 2812 |
2812 fuzzer_test("base_json_correctness_fuzzer") { | 2813 fuzzer_test("base_json_correctness_fuzzer") { |
2813 sources = [ | 2814 sources = [ |
2814 "json/correctness_fuzzer.cc", | 2815 "json/correctness_fuzzer.cc", |
2815 ] | 2816 ] |
2816 deps = [ | 2817 deps = [ |
2817 ":base", | 2818 ":base", |
2818 ] | 2819 ] |
2819 } | 2820 } |
OLD | NEW |