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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 | 100 |
100 deps = [ | 101 deps = [ |
101 "//base/memory", | 102 "//base/memory", |
102 "//base/third_party/dynamic_annotations", | 103 "//base/third_party/dynamic_annotations", |
103 ] | 104 ] |
104 | 105 |
105 allow_circular_includes_from = [ "//base/memory" ] | 106 allow_circular_includes_from = [ "//base/memory" ] |
106 | 107 |
107 visibility = [ "//base/*" ] | 108 visibility = [ "//base/*" ] |
108 } | 109 } |
OLD | NEW |