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

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

Issue 972203003: Fix GN NaCl Debug build of base. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase again Created 5 years, 9 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
« no previous file with comments | « base/metrics/BUILD.gn ('k') | base/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("process") {
6 sources = [
7 "internal_linux.cc",
8 "internal_linux.h",
9 "kill.cc",
10 "kill.h",
11 "kill_mac.cc",
12 "kill_posix.cc",
13 "kill_win.cc",
14 "launch.cc",
15 "launch.h",
16 "launch_ios.cc",
17 "launch_mac.cc",
18 "launch_posix.cc",
19 "launch_win.cc",
20 "memory.cc",
21 "memory.h",
22 "memory_linux.cc",
23 "memory_mac.mm",
24 "memory_win.cc",
25 "process.h",
26 "process_handle_freebsd.cc",
27 "process_handle_linux.cc",
28 "process_handle_mac.cc",
29 "process_handle_openbsd.cc",
30 "process_handle_posix.cc",
31 "process_handle_win.cc",
32 "process_info.h",
33 "process_info_linux.cc",
34 "process_info_mac.cc",
35 "process_info_win.cc",
36 "process_iterator.cc",
37 "process_iterator.h",
38 "process_iterator_freebsd.cc",
39 "process_iterator_linux.cc",
40 "process_iterator_mac.cc",
41 "process_iterator_openbsd.cc",
42 "process_iterator_win.cc",
43 "process_linux.cc",
44 "process_metrics.cc",
45 "process_metrics.h",
46 "process_metrics_freebsd.cc",
47 "process_metrics_ios.cc",
48 "process_metrics_linux.cc",
49 "process_metrics_mac.cc",
50 "process_metrics_openbsd.cc",
51 "process_metrics_posix.cc",
52 "process_metrics_win.cc",
53 "process_posix.cc",
54 "process_win.cc",
55 ]
56
57 sources -= [
58 "process_handle_freebsd.cc",
59 "process_handle_openbsd.cc",
60 "process_iterator_freebsd.cc",
61 "process_iterator_openbsd.cc",
62 "process_metrics_freebsd.cc",
63 "process_metrics_openbsd.cc",
64 ]
65
66 if (is_android) {
67 # Android uses some Linux sources, put those back.
68 set_sources_assignment_filter([])
69 sources += [
70 "internal_linux.cc",
71 "memory_linux.cc",
72 "process_handle_linux.cc",
73 "process_iterator_linux.cc",
74 "process_metrics_linux.cc",
75 ]
76 set_sources_assignment_filter(sources_assignment_filter)
77 }
78
79 if (is_nacl) {
80 sources -= [
81 "kill.cc",
82 "kill.h",
83 "kill_posix.cc",
84 "launch.cc",
85 "launch.h",
86 "launch_posix.cc",
87 "memory.cc",
88 "memory.h",
89 "process_iterator.cc",
90 "process_iterator.h",
91 "process_metrics.cc",
92 "process_metrics_posix.cc",
93 "process_posix.cc",
94 ]
95 }
96
97 defines = [ "BASE_IMPLEMENTATION" ]
98
99 deps = [
100 "//base/memory",
101 "//base/third_party/dynamic_annotations",
102 ]
103
104 allow_circular_includes_from = [ "//base/memory" ]
105
106 visibility = [ "//base/*" ]
107 }
OLDNEW
« no previous file with comments | « base/metrics/BUILD.gn ('k') | base/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698