Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: base/process/BUILD.gn

Issue 1641513004: Update //base to chromium 9659b08ea5a34f889dc4166217f438095ddc10d2 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 sources += [ 70 sources += [
71 "internal_linux.cc", 71 "internal_linux.cc",
72 "memory_linux.cc", 72 "memory_linux.cc",
73 "process_handle_linux.cc", 73 "process_handle_linux.cc",
74 "process_iterator_linux.cc", 74 "process_iterator_linux.cc",
75 "process_metrics_linux.cc", 75 "process_metrics_linux.cc",
76 ] 76 ]
77 set_sources_assignment_filter(sources_assignment_filter) 77 set_sources_assignment_filter(sources_assignment_filter)
78 } 78 }
79 79
80 if (is_nacl) { 80 if (is_nacl || is_ios) {
81 sources -= [ 81 sources -= [
82 "kill.cc", 82 "kill.cc",
83 "kill.h", 83 "kill.h",
84 "kill_posix.cc", 84 "kill_posix.cc",
85 "launch.cc", 85 "launch.cc",
86 "launch.h", 86 "launch.h",
87 "launch_posix.cc", 87 "launch_posix.cc",
88 "process_iterator.cc", 88 "process_iterator.cc",
89 "process_iterator.h", 89 "process_iterator.h",
90 "process_metrics.cc", 90 "process_metrics.cc",
91 "process_metrics_posix.cc", 91 "process_metrics_posix.cc",
92 "process_posix.cc", 92 "process_posix.cc",
93 ] 93 ]
94 } 94 }
95 95
96 if (is_ios) {
97 sources += [ "process_metrics.cc" ]
98 }
99
96 configs += [ "//base:base_implementation" ] 100 configs += [ "//base:base_implementation" ]
97 101
98 deps = [ 102 deps = [
99 "//base/memory", 103 "//base/memory",
100 "//base/third_party/dynamic_annotations", 104 "//base/third_party/dynamic_annotations",
101 ] 105 ]
102 106
103 allow_circular_includes_from = [ "//base/memory" ] 107 allow_circular_includes_from = [ "//base/memory" ]
104 108
105 visibility = [ "//base/*" ] 109 visibility = [ "//base/*" ]
106 } 110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698