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

Unified Diff: content/content.gyp

Issue 10546079: Added sandboxed process service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Init Created 8 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: content/content.gyp
diff --git a/content/content.gyp b/content/content.gyp
index 737479fc071c03f82b35b27baaff88b47c031ad0..4fa03c41d9e8da7d52fef2a639e0e1e94ae99a23 100644
--- a/content/content.gyp
+++ b/content/content.gyp
@@ -218,6 +218,23 @@
['OS == "android"', {
'targets': [
{
+ 'target_name': 'content_jni',
Yaron 2012/06/11 19:46:22 Remove this. You already have content_jni_headers
michaelbai 2012/06/11 20:30:16 Done.
+ 'type': 'none',
+ 'includes': [ 'content_jni.gypi' ],
+ },
+ {
+ 'target_name': 'common_aidl',
Yaron 2012/06/11 19:46:22 You shouldn't need to duplicate this. It's already
michaelbai 2012/06/11 20:30:16 Removed from content_common, as all targets are de
+ 'type': 'none',
+ 'variables': {
+ 'aidl_interface_file': '../content/public/android/java/org/chromium/content/common/common.aidl',
+ },
+ 'sources': [
+ '../content/public/android/java/org/chromium/content/common/ISandboxedProcessCallback.aidl',
+ '../content/public/android/java/org/chromium/content/common/ISandboxedProcessService.aidl',
+ ],
+ 'includes': [ '../build/java_aidl.gypi' ],
+ },
+ {
'target_name': 'content_java',
'type': 'none',
'dependencies': ['../base/base.gyp:base_java'],

Powered by Google App Engine
This is Rietveld 408576698