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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 152 "allocator/allocator_interception_mac.h", |
153 "allocator/allocator_interception_mac.mm", | 153 "allocator/allocator_interception_mac.mm", |
154 "allocator/allocator_shim.h", | 154 "allocator/allocator_shim.h", |
| 155 "allocator/malloc_zone_functions_mac.cc", |
| 156 "allocator/malloc_zone_functions_mac.h", |
155 "android/animation_frame_time_histogram.cc", | 157 "android/animation_frame_time_histogram.cc", |
156 "android/animation_frame_time_histogram.h", | 158 "android/animation_frame_time_histogram.h", |
157 "android/apk_assets.cc", | 159 "android/apk_assets.cc", |
158 "android/apk_assets.h", | 160 "android/apk_assets.h", |
159 "android/application_status_listener.cc", | 161 "android/application_status_listener.cc", |
160 "android/application_status_listener.h", | 162 "android/application_status_listener.h", |
161 "android/base_jni_onload.cc", | 163 "android/base_jni_onload.cc", |
162 "android/base_jni_onload.h", | 164 "android/base_jni_onload.h", |
163 "android/base_jni_registrar.cc", | 165 "android/base_jni_registrar.cc", |
164 "android/base_jni_registrar.h", | 166 "android/base_jni_registrar.h", |
(...skipping 1713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1878 configs += [ "//build/config/compiler:enable_arc" ] | 1880 configs += [ "//build/config/compiler:enable_arc" ] |
1879 deps = [ | 1881 deps = [ |
1880 ":base", | 1882 ":base", |
1881 "//testing/gtest", | 1883 "//testing/gtest", |
1882 ] | 1884 ] |
1883 } | 1885 } |
1884 } | 1886 } |
1885 | 1887 |
1886 test("base_unittests") { | 1888 test("base_unittests") { |
1887 sources = [ | 1889 sources = [ |
| 1890 "allocator/malloc_zone_functions_mac_unittest.cc", |
1888 "allocator/tcmalloc_unittest.cc", | 1891 "allocator/tcmalloc_unittest.cc", |
1889 "android/application_status_listener_unittest.cc", | 1892 "android/application_status_listener_unittest.cc", |
1890 "android/content_uri_utils_unittest.cc", | 1893 "android/content_uri_utils_unittest.cc", |
1891 "android/jni_android_unittest.cc", | 1894 "android/jni_android_unittest.cc", |
1892 "android/jni_array_unittest.cc", | 1895 "android/jni_array_unittest.cc", |
1893 "android/jni_string_unittest.cc", | 1896 "android/jni_string_unittest.cc", |
1894 "android/library_loader/library_prefetcher_unittest.cc", | 1897 "android/library_loader/library_prefetcher_unittest.cc", |
1895 "android/path_utils_unittest.cc", | 1898 "android/path_utils_unittest.cc", |
1896 "android/scoped_java_ref_unittest.cc", | 1899 "android/scoped_java_ref_unittest.cc", |
1897 "android/sys_utils_unittest.cc", | 1900 "android/sys_utils_unittest.cc", |
(...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2652 } | 2655 } |
2653 | 2656 |
2654 fuzzer_test("base_json_correctness_fuzzer") { | 2657 fuzzer_test("base_json_correctness_fuzzer") { |
2655 sources = [ | 2658 sources = [ |
2656 "json/correctness_fuzzer.cc", | 2659 "json/correctness_fuzzer.cc", |
2657 ] | 2660 ] |
2658 deps = [ | 2661 deps = [ |
2659 ":base", | 2662 ":base", |
2660 ] | 2663 ] |
2661 } | 2664 } |
OLD | NEW |