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

Unified Diff: content/content.gyp

Issue 1828733004: Load application manifests from resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « content/browser/mojo/mojo_shell_context.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content.gyp
diff --git a/content/content.gyp b/content/content.gyp
index 9a70c9ba3bd994d833489ac51ecb2f79f4e847e2..2221d0312cf8d2e7d0809c592d080a67b7d9c5f1 100644
--- a/content/content.gyp
+++ b/content/content.gyp
@@ -58,31 +58,32 @@
],
},
{
- # GN version: //content/browser:chrome_manifest
- 'target_name': 'chrome_manifest',
+ # GN version: //content/public/app:browser_manifest
+ 'target_name': 'content_app_browser_manifest',
'type': 'none',
'variables': {
'application_type': 'exe',
- 'application_name': 'chrome',
- 'source_manifest': '<(DEPTH)/content/browser/mojo/chrome_manifest.json',
+ 'application_name': 'content_browser',
+ 'source_manifest': '<(DEPTH)/content/public/app/mojo/content_browser_manifest.json',
},
'includes': [
'../mojo/public/mojo_application_manifest.gypi',
],
+ 'hard_dependency': 1,
},
{
- # GN version: //content/browser:chrome_renderer_manifest
- 'target_name': 'chrome_renderer_manifest',
+ # GN version: //content/public/app:renderer_manifest
+ 'target_name': 'content_app_renderer_manifest',
'type': 'none',
'variables': {
'application_type': 'exe',
- 'application_name': 'chrome_renderer',
- 'source_manifest':
- '<(DEPTH)/content/browser/mojo/chrome_renderer_manifest.json',
+ 'application_name': 'content_renderer',
+ 'source_manifest': '<(DEPTH)/content/public/app/mojo/content_renderer_manifest.json',
},
'includes': [
'../mojo/public/mojo_application_manifest.gypi',
],
+ 'hard_dependency': 1,
},
],
'includes': [
@@ -208,8 +209,6 @@
'../build/android/disable_gcc_lto.gypi',
],
'dependencies': [
- 'chrome_manifest',
- 'chrome_renderer_manifest',
'content_common',
'content_gpu',
'content_resources',
@@ -395,8 +394,6 @@
'target_name': 'content_common',
'type': 'none',
'dependencies': [
- 'chrome_manifest',
- 'chrome_renderer_manifest',
'content',
'content_resources'
],
« no previous file with comments | « content/browser/mojo/mojo_shell_context.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698