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

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

Issue 1250913002: patch from chinmaygarde@ to make progress on mac, ios. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: status Created 5 years, 4 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "memory.h", 89 "memory.h",
90 "process_iterator.cc", 90 "process_iterator.cc",
91 "process_iterator.h", 91 "process_iterator.h",
92 "process_metrics.cc", 92 "process_metrics.cc",
93 "process_metrics_posix.cc", 93 "process_metrics_posix.cc",
94 "process_posix.cc", 94 "process_posix.cc",
95 ] 95 ]
96 } 96 }
97 97
98 if (is_ios) { 98 if (is_ios) {
99 sources += [ "process_metrics.cc" ] 99 sources += [
100 "memory_stubs.cc",
101 "process_metrics.cc",
102 ]
100 } 103 }
101 104
102 configs += [ "//base:base_implementation" ] 105 configs += [ "//base:base_implementation" ]
103 106
104 deps = [ 107 deps = [
105 "//base/memory", 108 "//base/memory",
106 "//base/third_party/dynamic_annotations", 109 "//base/third_party/dynamic_annotations",
107 ] 110 ]
108 111
109 allow_circular_includes_from = [ "//base/memory" ] 112 allow_circular_includes_from = [ "//base/memory" ]
110 113
111 visibility = [ "//base/*" ] 114 visibility = [ "//base/*" ]
112 } 115 }
OLDNEW
« base/BUILD.gn ('K') | « base/memory/BUILD.gn ('k') | base/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698