| 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 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1099 "base_paths_posix.h", | 1099 "base_paths_posix.h", |
| 1100 "base_paths_win.cc", | 1100 "base_paths_win.cc", |
| 1101 "base_paths_win.h", | 1101 "base_paths_win.h", |
| 1102 ] | 1102 ] |
| 1103 | 1103 |
| 1104 if (is_linux) { | 1104 if (is_linux) { |
| 1105 sources += [ "base_paths_posix.cc" ] | 1105 sources += [ "base_paths_posix.cc" ] |
| 1106 } | 1106 } |
| 1107 } | 1107 } |
| 1108 | 1108 |
| 1109 if (!is_mac && is_posix) { |
| 1110 sources += [ "memory/shared_memory_handle_posix.cc" ] |
| 1111 } |
| 1112 |
| 1109 all_dependent_configs = [] | 1113 all_dependent_configs = [] |
| 1110 defines = [] | 1114 defines = [] |
| 1111 data = [] | 1115 data = [] |
| 1112 | 1116 |
| 1113 configs += [ | 1117 configs += [ |
| 1114 ":base_flags", | 1118 ":base_flags", |
| 1115 ":base_implementation", | 1119 ":base_implementation", |
| 1116 "//base/allocator:allocator_shim_define", # for allocator_check.cc. | 1120 "//base/allocator:allocator_shim_define", # for allocator_check.cc. |
| 1117 "//build/config:precompiled_headers", | 1121 "//build/config:precompiled_headers", |
| 1118 ] | 1122 ] |
| (...skipping 1575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2694 } | 2698 } |
| 2695 | 2699 |
| 2696 fuzzer_test("base_json_correctness_fuzzer") { | 2700 fuzzer_test("base_json_correctness_fuzzer") { |
| 2697 sources = [ | 2701 sources = [ |
| 2698 "json/correctness_fuzzer.cc", | 2702 "json/correctness_fuzzer.cc", |
| 2699 ] | 2703 ] |
| 2700 deps = [ | 2704 deps = [ |
| 2701 ":base", | 2705 ":base", |
| 2702 ] | 2706 ] |
| 2703 } | 2707 } |
| OLD | NEW |