| 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.h", | 1099 "base_paths.h", |
| 1100 "base_paths_android.cc", | 1100 "base_paths_android.cc", |
| 1101 "base_paths_android.h", | 1101 "base_paths_android.h", |
| 1102 "base_paths_mac.h", | 1102 "base_paths_mac.h", |
| 1103 "base_paths_mac.mm", | 1103 "base_paths_mac.mm", |
| 1104 "base_paths_posix.h", | 1104 "base_paths_posix.h", |
| 1105 "base_paths_win.cc", | 1105 "base_paths_win.cc", |
| 1106 "base_paths_win.h", | 1106 "base_paths_win.h", |
| 1107 ] | 1107 ] |
| 1108 | 1108 |
| 1109 if (is_linux || is_fuchsia) { | 1109 if (is_linux) { |
| 1110 sources += [ "base_paths_posix.cc" ] | 1110 sources += [ "base_paths_posix.cc" ] |
| 1111 } | 1111 } |
| 1112 } | 1112 } |
| 1113 | 1113 |
| 1114 if (!is_mac && is_posix) { | 1114 if (!is_mac && is_posix) { |
| 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 = [] |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1236 "debug/stack_trace_posix.cc", | 1236 "debug/stack_trace_posix.cc", |
| 1237 "message_loop/message_pump_libevent.cc", | 1237 "message_loop/message_pump_libevent.cc", |
| 1238 "message_loop/message_pump_libevent.h", | 1238 "message_loop/message_pump_libevent.h", |
| 1239 "process/kill_posix.cc", | 1239 "process/kill_posix.cc", |
| 1240 "process/launch_posix.cc", | 1240 "process/launch_posix.cc", |
| 1241 "process/process_handle_posix.cc", | 1241 "process/process_handle_posix.cc", |
| 1242 "process/process_posix.cc", | 1242 "process/process_posix.cc", |
| 1243 ] | 1243 ] |
| 1244 | 1244 |
| 1245 sources += [ | 1245 sources += [ |
| 1246 "base_paths_fuchsia.cc", |
| 1246 "debug/stack_trace_fuchsia.cc", | 1247 "debug/stack_trace_fuchsia.cc", |
| 1247 "process/kill_fuchsia.cc", | 1248 "process/kill_fuchsia.cc", |
| 1248 "process/launch_fuchsia.cc", | 1249 "process/launch_fuchsia.cc", |
| 1249 "process/process_fuchsia.cc", | 1250 "process/process_fuchsia.cc", |
| 1250 "process/process_handle_fuchsia.cc", | 1251 "process/process_handle_fuchsia.cc", |
| 1251 "sys_info_fuchsia.cc", | 1252 "sys_info_fuchsia.cc", |
| 1252 "threading/platform_thread_fuchsia.cc", | 1253 "threading/platform_thread_fuchsia.cc", |
| 1253 "time/time_conversion_posix.cc", | 1254 "time/time_conversion_posix.cc", |
| 1254 "time/time_exploded_posix.cc", | 1255 "time/time_exploded_posix.cc", |
| 1255 "time/time_fuchsia.cc", | 1256 "time/time_fuchsia.cc", |
| (...skipping 1511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2767 } | 2768 } |
| 2768 | 2769 |
| 2769 fuzzer_test("base_json_correctness_fuzzer") { | 2770 fuzzer_test("base_json_correctness_fuzzer") { |
| 2770 sources = [ | 2771 sources = [ |
| 2771 "json/correctness_fuzzer.cc", | 2772 "json/correctness_fuzzer.cc", |
| 2772 ] | 2773 ] |
| 2773 deps = [ | 2774 deps = [ |
| 2774 ":base", | 2775 ":base", |
| 2775 ] | 2776 ] |
| 2776 } | 2777 } |
| OLD | NEW |