| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "memory.cc", | 87 "memory.cc", |
| 88 "memory.h", | 88 "memory.h", |
| 89 "process_iterator.cc", | 89 "process_iterator.cc", |
| 90 "process_iterator.h", | 90 "process_iterator.h", |
| 91 "process_metrics.cc", | 91 "process_metrics.cc", |
| 92 "process_metrics_posix.cc", | 92 "process_metrics_posix.cc", |
| 93 "process_posix.cc", | 93 "process_posix.cc", |
| 94 ] | 94 ] |
| 95 } | 95 } |
| 96 | 96 |
| 97 defines = [ "BASE_IMPLEMENTATION" ] | 97 configs += [ "//base:base_implementation" ] |
| 98 | 98 |
| 99 deps = [ | 99 deps = [ |
| 100 "//base/memory", | 100 "//base/memory", |
| 101 "//base/third_party/dynamic_annotations", | 101 "//base/third_party/dynamic_annotations", |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 allow_circular_includes_from = [ "//base/memory" ] | 104 allow_circular_includes_from = [ "//base/memory" ] |
| 105 | 105 |
| 106 visibility = [ "//base/*" ] | 106 visibility = [ "//base/*" ] |
| 107 } | 107 } |
| OLD | NEW |