| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 "atomicops_internals_portable.h", | 217 "atomicops_internals_portable.h", |
| 218 "atomicops_internals_x86_msvc.h", | 218 "atomicops_internals_x86_msvc.h", |
| 219 "auto_reset.h", | 219 "auto_reset.h", |
| 220 "barrier_closure.cc", | 220 "barrier_closure.cc", |
| 221 "barrier_closure.h", | 221 "barrier_closure.h", |
| 222 "base64.cc", | 222 "base64.cc", |
| 223 "base64.h", | 223 "base64.h", |
| 224 "base64url.cc", | 224 "base64url.cc", |
| 225 "base64url.h", | 225 "base64url.h", |
| 226 "base_export.h", | 226 "base_export.h", |
| 227 "base_features.cc", |
| 228 "base_features.h", |
| 227 "base_switches.h", | 229 "base_switches.h", |
| 228 "big_endian.cc", | 230 "big_endian.cc", |
| 229 "big_endian.h", | 231 "big_endian.h", |
| 230 "bind.h", | 232 "bind.h", |
| 231 "bind_helpers.cc", | 233 "bind_helpers.cc", |
| 232 "bind_helpers.h", | 234 "bind_helpers.h", |
| 233 "bind_internal.h", | 235 "bind_internal.h", |
| 234 "bit_cast.h", | 236 "bit_cast.h", |
| 235 "bits.h", | 237 "bits.h", |
| 236 "build_time.cc", | 238 "build_time.cc", |
| (...skipping 2451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2688 } | 2690 } |
| 2689 | 2691 |
| 2690 fuzzer_test("base_json_correctness_fuzzer") { | 2692 fuzzer_test("base_json_correctness_fuzzer") { |
| 2691 sources = [ | 2693 sources = [ |
| 2692 "json/correctness_fuzzer.cc", | 2694 "json/correctness_fuzzer.cc", |
| 2693 ] | 2695 ] |
| 2694 deps = [ | 2696 deps = [ |
| 2695 ":base", | 2697 ":base", |
| 2696 ] | 2698 ] |
| 2697 } | 2699 } |
| OLD | NEW |