| OLD | NEW |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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 source_set("process") { | 5 source_set("process") { |
| 6 sources = [ | 6 sources = [ |
| 7 "internal_linux.cc", | 7 "internal_linux.cc", |
| 8 "internal_linux.h", | 8 "internal_linux.h", |
| 9 "kill.cc", | 9 "kill.cc", |
| 10 "kill.h", | 10 "kill.h", |
| 11 "kill_mac.cc", | 11 "kill_mac.cc", |
| 12 "kill_posix.cc", | 12 "kill_posix.cc", |
| 13 "kill_win.cc", | 13 "kill_win.cc", |
| 14 "launch.cc", | 14 "launch.cc", |
| 15 "launch.h", | 15 "launch.h", |
| 16 "launch_ios.cc", | 16 "launch_ios.cc", |
| 17 "launch_mac.cc", | 17 "launch_mac.cc", |
| 18 "launch_posix.cc", | 18 "launch_posix.cc", |
| 19 "launch_win.cc", | 19 "launch_win.cc", |
| 20 "memory.cc", | 20 "memory.cc", |
| 21 "memory.h", | 21 "memory.h", |
| 22 "memory_linux.cc", | 22 "memory_linux.cc", |
| 23 "memory_mac.mm", | 23 "memory_mac.mm", |
| 24 "memory_win.cc", | 24 "memory_win.cc", |
| 25 "process.h", | 25 "process.h", |
| 26 "process_handle.cc", |
| 26 "process_handle_freebsd.cc", | 27 "process_handle_freebsd.cc", |
| 27 "process_handle_linux.cc", | 28 "process_handle_linux.cc", |
| 28 "process_handle_mac.cc", | 29 "process_handle_mac.cc", |
| 29 "process_handle_openbsd.cc", | 30 "process_handle_openbsd.cc", |
| 30 "process_handle_posix.cc", | 31 "process_handle_posix.cc", |
| 31 "process_handle_win.cc", | 32 "process_handle_win.cc", |
| 32 "process_info.h", | 33 "process_info.h", |
| 33 "process_info_linux.cc", | 34 "process_info_linux.cc", |
| 34 "process_info_mac.cc", | 35 "process_info_mac.cc", |
| 35 "process_info_win.cc", | 36 "process_info_win.cc", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 104 |
| 104 deps = [ | 105 deps = [ |
| 105 "//base/memory", | 106 "//base/memory", |
| 106 "//base/third_party/dynamic_annotations", | 107 "//base/third_party/dynamic_annotations", |
| 107 ] | 108 ] |
| 108 | 109 |
| 109 allow_circular_includes_from = [ "//base/memory" ] | 110 allow_circular_includes_from = [ "//base/memory" ] |
| 110 | 111 |
| 111 visibility = [ "//base/*" ] | 112 visibility = [ "//base/*" ] |
| 112 } | 113 } |
| OLD | NEW |