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

Unified Diff: content/content.gyp

Issue 8100013: Start off the Content API by moving content::ContentRendererClient to content\public\renderer.BU... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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
===================================================================
--- content/content.gyp (revision 103561)
+++ content/content.gyp (working copy)
@@ -9,6 +9,7 @@
},
'includes': [
'../build/win_precompile.gypi',
+ 'content_api.gypi',
'content_shell.gypi',
'content_tests.gypi',
],
@@ -28,6 +29,7 @@
{'target_name': 'content',
'type': 'none',
'dependencies': [
+ 'content_api',
'content_app',
'content_browser',
'content_common',
@@ -39,6 +41,12 @@
'content_worker',
],
},
+ {'target_name': 'content_api',
+ 'type': 'none',
+ 'includes': [
+ 'content_api.gypi',
+ ],
+ },
{'target_name': 'content_app',
'type': 'static_library',
'includes': [
@@ -186,6 +194,7 @@
{'target_name': 'content',
'type': 'shared_library',
'includes': [
+ 'content_api.gypi',
'content_app.gypi',
'content_browser.gypi',
'content_common.gypi',
@@ -197,6 +206,9 @@
'content_worker.gypi',
],
},
+ {'target_name': 'content_api',
+ 'type': 'none',
+ },
{'target_name': 'content_app',
'type': 'none',
'dependencies': ['content', 'content_browser'],

Powered by Google App Engine
This is Rietveld 408576698