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", |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "memory.h", | 89 "memory.h", |
90 "process_iterator.cc", | 90 "process_iterator.cc", |
91 "process_iterator.h", | 91 "process_iterator.h", |
92 "process_metrics.cc", | 92 "process_metrics.cc", |
93 "process_metrics_posix.cc", | 93 "process_metrics_posix.cc", |
94 "process_posix.cc", | 94 "process_posix.cc", |
95 ] | 95 ] |
96 } | 96 } |
97 | 97 |
98 if (is_ios) { | 98 if (is_ios) { |
99 sources += [ "process_metrics.cc" ] | 99 sources += [ |
| 100 "memory_stubs.cc", |
| 101 "process_metrics.cc", |
| 102 ] |
100 } | 103 } |
101 | 104 |
102 configs += [ "//base:base_implementation" ] | 105 configs += [ "//base:base_implementation" ] |
103 | 106 |
104 deps = [ | 107 deps = [ |
105 "//base/memory", | 108 "//base/memory", |
106 "//base/third_party/dynamic_annotations", | 109 "//base/third_party/dynamic_annotations", |
107 ] | 110 ] |
108 | 111 |
109 allow_circular_includes_from = [ "//base/memory" ] | 112 allow_circular_includes_from = [ "//base/memory" ] |
110 | 113 |
111 visibility = [ "//base/*" ] | 114 visibility = [ "//base/*" ] |
112 } | 115 } |
OLD | NEW |