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

Unified Diff: mojo/public/c/system/BUILD.gn

Issue 621153003: Move mojo edk into mojo/edk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix checkdeps Created 6 years, 2 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 | « mojo/nacl/monacl_shell.cc ('k') | mojo/python/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/c/system/BUILD.gn
diff --git a/mojo/public/c/system/BUILD.gn b/mojo/public/c/system/BUILD.gn
index 028bc3ccb3ec3debbfb9fa4688376b5010294a54..b47b3da91d3cc3353869644c934616fa0a101470 100644
--- a/mojo/public/c/system/BUILD.gn
+++ b/mojo/public/c/system/BUILD.gn
@@ -19,9 +19,9 @@ source_set("system") {
]
}
-# In an is_component_build build, everything can link against //mojo/system
+# In an is_component_build build, everything can link against //mojo/edk/system
# because it is built as a shared library. However, in a static build,
-# //mojo/system is linked into an executable (e.g., mojo_shell), and must be
+# //mojo/edk/system is linked into an executable (e.g., mojo_shell), and must be
# injected into other shared libraries (i.e., Mojo Apps) that need the mojo
# system API.
#
@@ -34,7 +34,7 @@ source_set("system") {
group("for_shared_library") {
public_deps = [ ":system" ]
if (is_component_build) {
- deps = [ "//mojo/system" ]
+ deps = [ "//mojo/edk/system" ]
} else {
deps = [ "//mojo/public/platform/native:system_thunks" ]
}
@@ -43,6 +43,6 @@ group("for_shared_library") {
group("for_component") {
public_deps = [ ":system" ]
if (is_component_build) {
- deps = [ "//mojo/system" ]
+ deps = [ "//mojo/edk/system" ]
}
}
« no previous file with comments | « mojo/nacl/monacl_shell.cc ('k') | mojo/python/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698