Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
|
Mark Mentovai
2017/02/21 17:41:22
CL description: MessagePumpCRunLoopBase → MessageP
shrike
2017/02/22 00:57:52
Done.
| |
| 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 |
| 11 # | 11 # |
| (...skipping 1974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1986 "memory/scoped_vector_unittest.cc", | 1986 "memory/scoped_vector_unittest.cc", |
| 1987 "memory/shared_memory_mac_unittest.cc", | 1987 "memory/shared_memory_mac_unittest.cc", |
| 1988 "memory/shared_memory_unittest.cc", | 1988 "memory/shared_memory_unittest.cc", |
| 1989 "memory/shared_memory_win_unittest.cc", | 1989 "memory/shared_memory_win_unittest.cc", |
| 1990 "memory/singleton_unittest.cc", | 1990 "memory/singleton_unittest.cc", |
| 1991 "memory/weak_ptr_unittest.cc", | 1991 "memory/weak_ptr_unittest.cc", |
| 1992 "message_loop/message_loop_task_runner_unittest.cc", | 1992 "message_loop/message_loop_task_runner_unittest.cc", |
| 1993 "message_loop/message_loop_unittest.cc", | 1993 "message_loop/message_loop_unittest.cc", |
| 1994 "message_loop/message_pump_glib_unittest.cc", | 1994 "message_loop/message_pump_glib_unittest.cc", |
| 1995 "message_loop/message_pump_io_ios_unittest.cc", | 1995 "message_loop/message_pump_io_ios_unittest.cc", |
| 1996 "message_loop/message_pump_mac_unittest.cc", | |
| 1996 "metrics/bucket_ranges_unittest.cc", | 1997 "metrics/bucket_ranges_unittest.cc", |
| 1997 "metrics/field_trial_params_unittest.cc", | 1998 "metrics/field_trial_params_unittest.cc", |
| 1998 "metrics/field_trial_unittest.cc", | 1999 "metrics/field_trial_unittest.cc", |
| 1999 "metrics/histogram_base_unittest.cc", | 2000 "metrics/histogram_base_unittest.cc", |
| 2000 "metrics/histogram_delta_serialization_unittest.cc", | 2001 "metrics/histogram_delta_serialization_unittest.cc", |
| 2001 "metrics/histogram_functions_unittest.cc", | 2002 "metrics/histogram_functions_unittest.cc", |
| 2002 "metrics/histogram_macros_unittest.cc", | 2003 "metrics/histogram_macros_unittest.cc", |
| 2003 "metrics/histogram_snapshot_manager_unittest.cc", | 2004 "metrics/histogram_snapshot_manager_unittest.cc", |
| 2004 "metrics/histogram_unittest.cc", | 2005 "metrics/histogram_unittest.cc", |
| 2005 "metrics/metrics_hashes_unittest.cc", | 2006 "metrics/metrics_hashes_unittest.cc", |
| (...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2637 } | 2638 } |
| 2638 | 2639 |
| 2639 fuzzer_test("base_json_correctness_fuzzer") { | 2640 fuzzer_test("base_json_correctness_fuzzer") { |
| 2640 sources = [ | 2641 sources = [ |
| 2641 "json/correctness_fuzzer.cc", | 2642 "json/correctness_fuzzer.cc", |
| 2642 ] | 2643 ] |
| 2643 deps = [ | 2644 deps = [ |
| 2644 ":base", | 2645 ":base", |
| 2645 ] | 2646 ] |
| 2646 } | 2647 } |
| OLD | NEW |