| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 # fixed and this target should always be a static_library in the | 142 # fixed and this target should always be a static_library in the |
| 143 # non-component case. | 143 # non-component case. |
| 144 static_component_type = "source_set" | 144 static_component_type = "source_set" |
| 145 } | 145 } |
| 146 | 146 |
| 147 sources = [ | 147 sources = [ |
| 148 "allocator/allocator_check.cc", | 148 "allocator/allocator_check.cc", |
| 149 "allocator/allocator_check.h", | 149 "allocator/allocator_check.h", |
| 150 "allocator/allocator_extension.cc", | 150 "allocator/allocator_extension.cc", |
| 151 "allocator/allocator_extension.h", | 151 "allocator/allocator_extension.h", |
| 152 "allocator/allocator_interception_mac.h", |
| 153 "allocator/allocator_interception_mac.mm", |
| 152 "allocator/allocator_shim.h", | 154 "allocator/allocator_shim.h", |
| 153 "allocator/oom.h", | 155 "allocator/oom.h", |
| 154 "android/animation_frame_time_histogram.cc", | 156 "android/animation_frame_time_histogram.cc", |
| 155 "android/animation_frame_time_histogram.h", | 157 "android/animation_frame_time_histogram.h", |
| 156 "android/apk_assets.cc", | 158 "android/apk_assets.cc", |
| 157 "android/apk_assets.h", | 159 "android/apk_assets.h", |
| 158 "android/application_status_listener.cc", | 160 "android/application_status_listener.cc", |
| 159 "android/application_status_listener.h", | 161 "android/application_status_listener.h", |
| 160 "android/base_jni_onload.cc", | 162 "android/base_jni_onload.cc", |
| 161 "android/base_jni_onload.h", | 163 "android/base_jni_onload.h", |
| (...skipping 2426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2588 } | 2590 } |
| 2589 | 2591 |
| 2590 fuzzer_test("base_json_correctness_fuzzer") { | 2592 fuzzer_test("base_json_correctness_fuzzer") { |
| 2591 sources = [ | 2593 sources = [ |
| 2592 "json/correctness_fuzzer.cc", | 2594 "json/correctness_fuzzer.cc", |
| 2593 ] | 2595 ] |
| 2594 deps = [ | 2596 deps = [ |
| 2595 ":base", | 2597 ":base", |
| 2596 ] | 2598 ] |
| 2597 } | 2599 } |
| OLD | NEW |