| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 "at_exit.cc", | 227 "at_exit.cc", |
| 228 "at_exit.h", | 228 "at_exit.h", |
| 229 "atomic_ref_count.h", | 229 "atomic_ref_count.h", |
| 230 "atomic_sequence_num.h", | 230 "atomic_sequence_num.h", |
| 231 "atomicops.h", | 231 "atomicops.h", |
| 232 "atomicops_internals_portable.h", | 232 "atomicops_internals_portable.h", |
| 233 "atomicops_internals_x86_msvc.h", | 233 "atomicops_internals_x86_msvc.h", |
| 234 "auto_reset.h", | 234 "auto_reset.h", |
| 235 "barrier_closure.cc", | 235 "barrier_closure.cc", |
| 236 "barrier_closure.h", | 236 "barrier_closure.h", |
| 237 "base32.cc", |
| 238 "base32.h", |
| 237 "base64.cc", | 239 "base64.cc", |
| 238 "base64.h", | 240 "base64.h", |
| 239 "base64url.cc", | 241 "base64url.cc", |
| 240 "base64url.h", | 242 "base64url.h", |
| 241 "base_export.h", | 243 "base_export.h", |
| 242 "base_switches.h", | 244 "base_switches.h", |
| 243 "big_endian.cc", | 245 "big_endian.cc", |
| 244 "big_endian.h", | 246 "big_endian.h", |
| 245 "bind.h", | 247 "bind.h", |
| 246 "bind_helpers.cc", | 248 "bind_helpers.cc", |
| (...skipping 1556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1803 "android/jni_array_unittest.cc", | 1805 "android/jni_array_unittest.cc", |
| 1804 "android/jni_string_unittest.cc", | 1806 "android/jni_string_unittest.cc", |
| 1805 "android/library_loader/library_prefetcher_unittest.cc", | 1807 "android/library_loader/library_prefetcher_unittest.cc", |
| 1806 "android/path_utils_unittest.cc", | 1808 "android/path_utils_unittest.cc", |
| 1807 "android/scoped_java_ref_unittest.cc", | 1809 "android/scoped_java_ref_unittest.cc", |
| 1808 "android/sys_utils_unittest.cc", | 1810 "android/sys_utils_unittest.cc", |
| 1809 "android/unguessable_token_android_unittest.cc", | 1811 "android/unguessable_token_android_unittest.cc", |
| 1810 "at_exit_unittest.cc", | 1812 "at_exit_unittest.cc", |
| 1811 "atomicops_unittest.cc", | 1813 "atomicops_unittest.cc", |
| 1812 "barrier_closure_unittest.cc", | 1814 "barrier_closure_unittest.cc", |
| 1815 "base32_unittest.cc", |
| 1813 "base64_unittest.cc", | 1816 "base64_unittest.cc", |
| 1814 "base64url_unittest.cc", | 1817 "base64url_unittest.cc", |
| 1815 "big_endian_unittest.cc", | 1818 "big_endian_unittest.cc", |
| 1816 "bind_helpers_unittest.cc", | 1819 "bind_helpers_unittest.cc", |
| 1817 "bind_unittest.cc", | 1820 "bind_unittest.cc", |
| 1818 "bit_cast_unittest.cc", | 1821 "bit_cast_unittest.cc", |
| 1819 "bits_unittest.cc", | 1822 "bits_unittest.cc", |
| 1820 "build_time_unittest.cc", | 1823 "build_time_unittest.cc", |
| 1821 "callback_helpers_unittest.cc", | 1824 "callback_helpers_unittest.cc", |
| 1822 "callback_list_unittest.cc", | 1825 "callback_list_unittest.cc", |
| (...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2542 } | 2545 } |
| 2543 | 2546 |
| 2544 fuzzer_test("base_json_correctness_fuzzer") { | 2547 fuzzer_test("base_json_correctness_fuzzer") { |
| 2545 sources = [ | 2548 sources = [ |
| 2546 "json/correctness_fuzzer.cc", | 2549 "json/correctness_fuzzer.cc", |
| 2547 ] | 2550 ] |
| 2548 deps = [ | 2551 deps = [ |
| 2549 ":base", | 2552 ":base", |
| 2550 ] | 2553 ] |
| 2551 } | 2554 } |
| OLD | NEW |