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

Unified Diff: base/process/BUILD.gn

Issue 1395573003: Build nacl_helper_nonsfi with GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove the unnecessary imports Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: base/process/BUILD.gn
diff --git a/base/process/BUILD.gn b/base/process/BUILD.gn
index 3df58548b5ad36f35db95e209432d500f5338ef0..3ea2b090496d96a3fc48fd61ca068e94b66e3d04 100644
--- a/base/process/BUILD.gn
+++ b/base/process/BUILD.gn
@@ -81,10 +81,6 @@ source_set("process") {
sources -= [
"kill.cc",
"kill.h",
- "kill_posix.cc",
- "launch.cc",
- "launch.h",
- "launch_posix.cc",
"memory.cc",
"memory.h",
"process_iterator.cc",
@@ -93,6 +89,14 @@ source_set("process") {
"process_metrics_posix.cc",
"process_posix.cc",
]
+ if (!is_nacl_nonsfi) {
+ sources -= [
+ "kill_posix.cc",
+ "launch.cc",
+ "launch.h",
+ "launch_posix.cc",
+ ]
+ }
}
if (is_nacl) {

Powered by Google App Engine
This is Rietveld 408576698