| 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 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 926 "trace_event/process_memory_dump.cc", | 926 "trace_event/process_memory_dump.cc", |
| 927 "trace_event/process_memory_dump.h", | 927 "trace_event/process_memory_dump.h", |
| 928 "trace_event/process_memory_maps.cc", | 928 "trace_event/process_memory_maps.cc", |
| 929 "trace_event/process_memory_maps.h", | 929 "trace_event/process_memory_maps.h", |
| 930 "trace_event/process_memory_totals.cc", | 930 "trace_event/process_memory_totals.cc", |
| 931 "trace_event/process_memory_totals.h", | 931 "trace_event/process_memory_totals.h", |
| 932 "trace_event/trace_buffer.cc", | 932 "trace_event/trace_buffer.cc", |
| 933 "trace_event/trace_buffer.h", | 933 "trace_event/trace_buffer.h", |
| 934 "trace_event/trace_config.cc", | 934 "trace_event/trace_config.cc", |
| 935 "trace_event/trace_config.h", | 935 "trace_event/trace_config.h", |
| 936 "trace_event/trace_event.cc", |
| 936 "trace_event/trace_event.h", | 937 "trace_event/trace_event.h", |
| 937 "trace_event/trace_event_android.cc", | 938 "trace_event/trace_event_android.cc", |
| 938 "trace_event/trace_event_argument.cc", | 939 "trace_event/trace_event_argument.cc", |
| 939 "trace_event/trace_event_argument.h", | 940 "trace_event/trace_event_argument.h", |
| 940 "trace_event/trace_event_etw_export_win.cc", | 941 "trace_event/trace_event_etw_export_win.cc", |
| 941 "trace_event/trace_event_etw_export_win.h", | 942 "trace_event/trace_event_etw_export_win.h", |
| 942 "trace_event/trace_event_impl.cc", | 943 "trace_event/trace_event_impl.cc", |
| 943 "trace_event/trace_event_impl.h", | 944 "trace_event/trace_event_impl.h", |
| 944 "trace_event/trace_event_memory_overhead.cc", | 945 "trace_event/trace_event_memory_overhead.cc", |
| 945 "trace_event/trace_event_memory_overhead.h", | 946 "trace_event/trace_event_memory_overhead.h", |
| (...skipping 1499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2445 android_library("base_java_unittest_support") { | 2446 android_library("base_java_unittest_support") { |
| 2446 deps = [ | 2447 deps = [ |
| 2447 ":base_java", | 2448 ":base_java", |
| 2448 ] | 2449 ] |
| 2449 java_files = [ | 2450 java_files = [ |
| 2450 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2451 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 2451 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2452 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
| 2452 ] | 2453 ] |
| 2453 } | 2454 } |
| 2454 } | 2455 } |
| OLD | NEW |