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

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

Issue 1531443002: Update base to extend NaCl support (needed for skia support) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « base/memory/BUILD.gn ('k') | base/process/memory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 } 78 }
79 79
80 if (is_nacl) { 80 if (is_nacl) {
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 "memory.cc",
89 "memory.h",
90 "process_iterator.cc", 88 "process_iterator.cc",
91 "process_iterator.h", 89 "process_iterator.h",
92 "process_metrics.cc", 90 "process_metrics.cc",
93 "process_metrics_posix.cc", 91 "process_metrics_posix.cc",
94 "process_posix.cc", 92 "process_posix.cc",
95 ] 93 ]
96 } 94 }
97 95
98 configs += [ "//base:base_implementation" ] 96 configs += [ "//base:base_implementation" ]
99 97
100 deps = [ 98 deps = [
101 "//base/memory", 99 "//base/memory",
102 "//base/third_party/dynamic_annotations", 100 "//base/third_party/dynamic_annotations",
103 ] 101 ]
104 102
105 allow_circular_includes_from = [ "//base/memory" ] 103 allow_circular_includes_from = [ "//base/memory" ]
106 104
107 visibility = [ "//base/*" ] 105 visibility = [ "//base/*" ]
108 } 106 }
OLDNEW
« no previous file with comments | « base/memory/BUILD.gn ('k') | base/process/memory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698