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 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1115 sources += [ "memory/shared_memory_handle_posix.cc" ] | 1115 sources += [ "memory/shared_memory_handle_posix.cc" ] |
1116 } | 1116 } |
1117 | 1117 |
1118 all_dependent_configs = [] | 1118 all_dependent_configs = [] |
1119 defines = [] | 1119 defines = [] |
1120 data = [] | 1120 data = [] |
1121 | 1121 |
1122 configs += [ | 1122 configs += [ |
1123 ":base_flags", | 1123 ":base_flags", |
1124 ":base_implementation", | 1124 ":base_implementation", |
1125 "//base/allocator:allocator_shim_define", # for allocator_check.cc. | |
1126 "//build/config:precompiled_headers", | 1125 "//build/config:precompiled_headers", |
1127 ] | 1126 ] |
1128 | 1127 |
1129 deps = [ | 1128 deps = [ |
1130 "//base/allocator", | 1129 "//base/allocator", |
1131 "//base/allocator:features", | 1130 "//base/allocator:features", |
1132 "//base/third_party/dynamic_annotations", | 1131 "//base/third_party/dynamic_annotations", |
1133 "//third_party/modp_b64", | 1132 "//third_party/modp_b64", |
1134 ] | 1133 ] |
1135 | 1134 |
(...skipping 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2285 ] | 2284 ] |
2286 | 2285 |
2287 if (is_ios || is_mac) { | 2286 if (is_ios || is_mac) { |
2288 deps += [ ":base_unittests_arc" ] | 2287 deps += [ ":base_unittests_arc" ] |
2289 } | 2288 } |
2290 | 2289 |
2291 public_deps = [ | 2290 public_deps = [ |
2292 ":base_unittests_bundle_data", | 2291 ":base_unittests_bundle_data", |
2293 ] | 2292 ] |
2294 | 2293 |
2295 # Some unittests depend on the ALLOCATOR_SHIM macro. | |
2296 configs += [ "//base/allocator:allocator_shim_define" ] | |
2297 | |
2298 data = [ | 2294 data = [ |
2299 "test/data/", | 2295 "test/data/", |
2300 ] | 2296 ] |
2301 | 2297 |
2302 # Allow more direct string conversions on platforms with native utf8 | 2298 # Allow more direct string conversions on platforms with native utf8 |
2303 # strings | 2299 # strings |
2304 if (is_mac || is_ios || is_chromeos || is_chromecast) { | 2300 if (is_mac || is_ios || is_chromeos || is_chromecast) { |
2305 defines += [ "SYSTEM_NATIVE_UTF8" ] | 2301 defines += [ "SYSTEM_NATIVE_UTF8" ] |
2306 } | 2302 } |
2307 | 2303 |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2764 } | 2760 } |
2765 | 2761 |
2766 fuzzer_test("base_json_correctness_fuzzer") { | 2762 fuzzer_test("base_json_correctness_fuzzer") { |
2767 sources = [ | 2763 sources = [ |
2768 "json/correctness_fuzzer.cc", | 2764 "json/correctness_fuzzer.cc", |
2769 ] | 2765 ] |
2770 deps = [ | 2766 deps = [ |
2771 ":base", | 2767 ":base", |
2772 ] | 2768 ] |
2773 } | 2769 } |
OLD | NEW |