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

Unified Diff: chrome/nacl.gypi

Issue 6995121: New NaCl zygote implementation 2 (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Missing include... Created 9 years, 6 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: chrome/nacl.gypi
diff --git a/chrome/nacl.gypi b/chrome/nacl.gypi
index 78178ab7a26a16ea5a4aa10c2c1ca219a2357c5a..d0bd16d02927f66edfccf1a3161eba06e694366a 100644
--- a/chrome/nacl.gypi
+++ b/chrome/nacl.gypi
@@ -28,8 +28,8 @@
'nacl/nacl_main_platform_delegate_linux.cc',
'nacl/nacl_main_platform_delegate_mac.mm',
'nacl/nacl_main_platform_delegate_win.cc',
- 'nacl/nacl_launcher_thread.cc',
- 'nacl/nacl_launcher_thread.h',
+ 'nacl/nacl_listener.cc',
+ 'nacl/nacl_listener.h',
],
# TODO(gregoryd): consider switching NaCl to use Chrome OS defines
'conditions': [
@@ -45,6 +45,9 @@
'defines': [
'__STDC_LIMIT_MACROS=1',
],
+ 'sources': [
+ 'nacl/nacl_fork_delegate_linux.cc',
+ ],
},],
],
}],
@@ -143,5 +146,22 @@
},
],
}],
+ ['OS=="linux"', {
+ 'targets': [
+ {
+ 'target_name': 'nacl_helper',
+ 'type': 'executable',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ 'nacl',
+ ],
+ 'sources': [
+ '../chrome/nacl/nacl_helper_linux.cc',
+ ],
+ },
+ ],
+ }],
],
}

Powered by Google App Engine
This is Rietveld 408576698