| 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 import("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 | 6 |
| 7 # Should be static library, see documentation on //base:base for discussion. | 7 source_set("process") { |
| 8 static_library("process") { | |
| 9 sources = [ | 8 sources = [ |
| 10 "internal_linux.cc", | 9 "internal_linux.cc", |
| 11 "internal_linux.h", | 10 "internal_linux.h", |
| 12 "kill.cc", | 11 "kill.cc", |
| 13 "kill.h", | 12 "kill.h", |
| 14 "kill_mac.cc", | 13 "kill_mac.cc", |
| 15 "kill_posix.cc", | 14 "kill_posix.cc", |
| 16 "kill_win.cc", | 15 "kill_win.cc", |
| 17 "launch.cc", | 16 "launch.cc", |
| 18 "launch.h", | 17 "launch.h", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 | 118 |
| 120 deps = [ | 119 deps = [ |
| 121 "//base/memory", | 120 "//base/memory", |
| 122 "//base/third_party/dynamic_annotations", | 121 "//base/third_party/dynamic_annotations", |
| 123 ] | 122 ] |
| 124 | 123 |
| 125 allow_circular_includes_from = [ "//base/memory" ] | 124 allow_circular_includes_from = [ "//base/memory" ] |
| 126 | 125 |
| 127 visibility = [ "//base/*" ] | 126 visibility = [ "//base/*" ] |
| 128 } | 127 } |
| OLD | NEW |