| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 "android/context_utils.cc", | 167 "android/context_utils.cc", |
| 168 "android/context_utils.h", | 168 "android/context_utils.h", |
| 169 "android/cpu_features.cc", | 169 "android/cpu_features.cc", |
| 170 "android/cxa_demangle_stub.cc", | 170 "android/cxa_demangle_stub.cc", |
| 171 "android/early_trace_event_binding.cc", | 171 "android/early_trace_event_binding.cc", |
| 172 "android/early_trace_event_binding.h", | 172 "android/early_trace_event_binding.h", |
| 173 "android/event_log.cc", | 173 "android/event_log.cc", |
| 174 "android/event_log.h", | 174 "android/event_log.h", |
| 175 "android/field_trial_list.cc", | 175 "android/field_trial_list.cc", |
| 176 "android/field_trial_list.h", | 176 "android/field_trial_list.h", |
| 177 "android/fifo_utils.cc", | |
| 178 "android/fifo_utils.h", | |
| 179 "android/important_file_writer_android.cc", | 177 "android/important_file_writer_android.cc", |
| 180 "android/important_file_writer_android.h", | 178 "android/important_file_writer_android.h", |
| 181 "android/java_handler_thread.cc", | 179 "android/java_handler_thread.cc", |
| 182 "android/java_handler_thread.h", | 180 "android/java_handler_thread.h", |
| 183 "android/java_message_handler_factory.h", | 181 "android/java_message_handler_factory.h", |
| 184 "android/java_runtime.cc", | 182 "android/java_runtime.cc", |
| 185 "android/java_runtime.h", | 183 "android/java_runtime.h", |
| 186 "android/jni_android.cc", | 184 "android/jni_android.cc", |
| 187 "android/jni_android.h", | 185 "android/jni_android.h", |
| 188 "android/jni_array.cc", | 186 "android/jni_array.cc", |
| (...skipping 2338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2527 } | 2525 } |
| 2528 | 2526 |
| 2529 fuzzer_test("base_json_correctness_fuzzer") { | 2527 fuzzer_test("base_json_correctness_fuzzer") { |
| 2530 sources = [ | 2528 sources = [ |
| 2531 "json/correctness_fuzzer.cc", | 2529 "json/correctness_fuzzer.cc", |
| 2532 ] | 2530 ] |
| 2533 deps = [ | 2531 deps = [ |
| 2534 ":base", | 2532 ":base", |
| 2535 ] | 2533 ] |
| 2536 } | 2534 } |
| OLD | NEW |