| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "android/context_utils.cc", | 170 "android/context_utils.cc", |
| 171 "android/context_utils.h", | 171 "android/context_utils.h", |
| 172 "android/cpu_features.cc", | 172 "android/cpu_features.cc", |
| 173 "android/cxa_demangle_stub.cc", | 173 "android/cxa_demangle_stub.cc", |
| 174 "android/early_trace_event_binding.cc", | 174 "android/early_trace_event_binding.cc", |
| 175 "android/early_trace_event_binding.h", | 175 "android/early_trace_event_binding.h", |
| 176 "android/event_log.cc", | 176 "android/event_log.cc", |
| 177 "android/event_log.h", | 177 "android/event_log.h", |
| 178 "android/field_trial_list.cc", | 178 "android/field_trial_list.cc", |
| 179 "android/field_trial_list.h", | 179 "android/field_trial_list.h", |
| 180 "android/fifo_utils.cc", | |
| 181 "android/fifo_utils.h", | |
| 182 "android/important_file_writer_android.cc", | 180 "android/important_file_writer_android.cc", |
| 183 "android/important_file_writer_android.h", | 181 "android/important_file_writer_android.h", |
| 184 "android/java_handler_thread.cc", | 182 "android/java_handler_thread.cc", |
| 185 "android/java_handler_thread.h", | 183 "android/java_handler_thread.h", |
| 186 "android/java_message_handler_factory.h", | 184 "android/java_message_handler_factory.h", |
| 187 "android/java_runtime.cc", | 185 "android/java_runtime.cc", |
| 188 "android/java_runtime.h", | 186 "android/java_runtime.h", |
| 189 "android/jni_android.cc", | 187 "android/jni_android.cc", |
| 190 "android/jni_android.h", | 188 "android/jni_android.h", |
| 191 "android/jni_array.cc", | 189 "android/jni_array.cc", |
| (...skipping 2373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2565 } | 2563 } |
| 2566 | 2564 |
| 2567 fuzzer_test("base_json_correctness_fuzzer") { | 2565 fuzzer_test("base_json_correctness_fuzzer") { |
| 2568 sources = [ | 2566 sources = [ |
| 2569 "json/correctness_fuzzer.cc", | 2567 "json/correctness_fuzzer.cc", |
| 2570 ] | 2568 ] |
| 2571 deps = [ | 2569 deps = [ |
| 2572 ":base", | 2570 ":base", |
| 2573 ] | 2571 ] |
| 2574 } | 2572 } |
| OLD | NEW |