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. |
| 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 920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 931 "trace_event/process_memory_dump.cc", | 931 "trace_event/process_memory_dump.cc", |
| 932 "trace_event/process_memory_dump.h", | 932 "trace_event/process_memory_dump.h", |
| 933 "trace_event/process_memory_maps.cc", | 933 "trace_event/process_memory_maps.cc", |
| 934 "trace_event/process_memory_maps.h", | 934 "trace_event/process_memory_maps.h", |
| 935 "trace_event/process_memory_totals.cc", | 935 "trace_event/process_memory_totals.cc", |
| 936 "trace_event/process_memory_totals.h", | 936 "trace_event/process_memory_totals.h", |
| 937 "trace_event/trace_buffer.cc", | 937 "trace_event/trace_buffer.cc", |
| 938 "trace_event/trace_buffer.h", | 938 "trace_event/trace_buffer.h", |
| 939 "trace_event/trace_config.cc", | 939 "trace_event/trace_config.cc", |
| 940 "trace_event/trace_config.h", | 940 "trace_event/trace_config.h", |
| 941 "trace_event/trace_event.cc", | |
|
oystein (OOO til 10th of July)
2016/10/06 18:40:42
Why not add the function to trace_event_impl.cc? (
| |
| 941 "trace_event/trace_event.h", | 942 "trace_event/trace_event.h", |
| 942 "trace_event/trace_event_android.cc", | 943 "trace_event/trace_event_android.cc", |
| 943 "trace_event/trace_event_argument.cc", | 944 "trace_event/trace_event_argument.cc", |
| 944 "trace_event/trace_event_argument.h", | 945 "trace_event/trace_event_argument.h", |
| 945 "trace_event/trace_event_etw_export_win.cc", | 946 "trace_event/trace_event_etw_export_win.cc", |
| 946 "trace_event/trace_event_etw_export_win.h", | 947 "trace_event/trace_event_etw_export_win.h", |
| 947 "trace_event/trace_event_impl.cc", | 948 "trace_event/trace_event_impl.cc", |
| 948 "trace_event/trace_event_impl.h", | 949 "trace_event/trace_event_impl.h", |
| 949 "trace_event/trace_event_memory_overhead.cc", | 950 "trace_event/trace_event_memory_overhead.cc", |
| 950 "trace_event/trace_event_memory_overhead.h", | 951 "trace_event/trace_event_memory_overhead.h", |
| (...skipping 1498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2449 testonly = true | 2450 testonly = true |
| 2450 deps = [ | 2451 deps = [ |
| 2451 ":base_java", | 2452 ":base_java", |
| 2452 ] | 2453 ] |
| 2453 java_files = [ | 2454 java_files = [ |
| 2454 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2455 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 2455 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2456 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
| 2456 ] | 2457 ] |
| 2457 } | 2458 } |
| 2458 } | 2459 } |
| OLD | NEW |