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

Unified Diff: services/shell/shell.gyp

Issue 1879403002: Fix link error in GYP builds (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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/shell/shell.gyp
diff --git a/services/shell/shell.gyp b/services/shell/shell.gyp
index 6cc23bac10657cef546abf7882efcb35bf18ea30..778ebbe81d80b2b1e89a834d72f614e99efbbcee 100644
--- a/services/shell/shell.gyp
+++ b/services/shell/shell.gyp
@@ -111,7 +111,7 @@
'dependencies': [
'shell_lib',
'shell_public',
- 'shell_test_interfaces',
+ 'shell_test_public',
'<(DEPTH)/base/base.gyp:base',
'<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib',
'<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters',
@@ -121,8 +121,14 @@
'<(DEPTH)/url/url.gyp:url_lib',
]
}, {
- 'target_name': 'shell_test_interfaces',
+ 'target_name': 'shell_test_public',
'type': 'static_library',
+ 'dependencies': [
+ 'shell_test_interfaces',
+ ],
+ }, {
+ 'target_name': 'shell_test_interfaces',
+ 'type': 'none',
'variables': {
'mojom_files': [
'tests/test.mojom',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698