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 2438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2449 | 2449 |
2450 if (enable_nocompile_tests) { | 2450 if (enable_nocompile_tests) { |
2451 nocompile_test("base_nocompile_tests") { | 2451 nocompile_test("base_nocompile_tests") { |
2452 sources = [ | 2452 sources = [ |
2453 "bind_unittest.nc", | 2453 "bind_unittest.nc", |
2454 "callback_list_unittest.nc", | 2454 "callback_list_unittest.nc", |
2455 "callback_unittest.nc", | 2455 "callback_unittest.nc", |
2456 "containers/span_unittest.nc", | 2456 "containers/span_unittest.nc", |
2457 "memory/ref_counted_unittest.nc", | 2457 "memory/ref_counted_unittest.nc", |
2458 "memory/weak_ptr_unittest.nc", | 2458 "memory/weak_ptr_unittest.nc", |
| 2459 "metrics/field_trial_params_unittest.nc", |
2459 "metrics/histogram_unittest.nc", | 2460 "metrics/histogram_unittest.nc", |
2460 "strings/string16_unittest.nc", | 2461 "strings/string16_unittest.nc", |
2461 "task_scheduler/task_traits_unittest.nc", | 2462 "task_scheduler/task_traits_unittest.nc", |
2462 ] | 2463 ] |
2463 | 2464 |
2464 deps = [ | 2465 deps = [ |
2465 ":base", | 2466 ":base", |
2466 "//base/test:run_all_unittests", | 2467 "//base/test:run_all_unittests", |
2467 "//testing/gtest", | 2468 "//testing/gtest", |
2468 ] | 2469 ] |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2803 } | 2804 } |
2804 | 2805 |
2805 fuzzer_test("base_json_correctness_fuzzer") { | 2806 fuzzer_test("base_json_correctness_fuzzer") { |
2806 sources = [ | 2807 sources = [ |
2807 "json/correctness_fuzzer.cc", | 2808 "json/correctness_fuzzer.cc", |
2808 ] | 2809 ] |
2809 deps = [ | 2810 deps = [ |
2810 ":base", | 2811 ":base", |
2811 ] | 2812 ] |
2812 } | 2813 } |
OLD | NEW |