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

Unified Diff: content/content.gyp

Issue 750633003: Implement HasPermission() method in PermissionService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: include content_common_mojo_bindings.gypi in content.gyp Created 6 years, 1 month 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 cfa5b21516704e6ec07de138264fc7981f27f65b..660a8cac469fed329b1ca8e36debbd5bf00fa68e 100644
--- a/content/content.gyp
+++ b/content/content.gyp
@@ -21,11 +21,13 @@
}],
],
},
+ 'includes': [
+ 'content_common_mojo_bindings.gypi',
+ ],
'conditions': [
['OS != "ios"', {
'includes': [
'../build/win_precompile.gypi',
- 'content_common_mojo_bindings.gypi',
'content_resources.gypi',
],
}],
@@ -67,6 +69,7 @@
'dependencies': [
'content_browser',
'content_common',
+ 'content_common_mojo_bindings',
],
'export_dependent_settings': [
'content_common',
@@ -75,7 +78,6 @@
['OS != "ios"', {
'dependencies': [
'content_child',
- 'content_common_mojo_bindings',
'content_gpu',
'content_plugin',
'content_ppapi_plugin',
@@ -157,6 +159,7 @@
],
'dependencies': [
'content_common',
+ 'content_common_mojo_bindings',
],
'export_dependent_settings': [
'content_common',
@@ -175,7 +178,6 @@
}],
['OS != "ios"', {
'dependencies': [
- 'content_common_mojo_bindings',
'content_resources',
],
}],
@@ -189,10 +191,12 @@
'includes': [
'content_common.gypi',
],
+ 'dependencies': [
+ 'content_common_mojo_bindings',
+ ],
'conditions': [
['OS != "ios"', {
'dependencies': [
- 'content_common_mojo_bindings',
'content_resources',
],
}],
@@ -304,6 +308,7 @@
'type': 'shared_library',
'variables': { 'enable_wexit_time_destructors': 1, },
'dependencies': [
+ 'content_common_mojo_bindings',
'content_resources',
],
'conditions': [
@@ -312,11 +317,6 @@
'../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune',
],
}],
- ['OS != "ios"', {
- 'dependencies': [
- 'content_common_mojo_bindings',
- ]
- }]
],
'includes': [
'content_app.gypi',

Powered by Google App Engine
This is Rietveld 408576698