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

Unified Diff: examples/echo/BUILD.gn

Issue 713513002: Change mojo application name to {name}.mojo (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Add missing library. 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
« no previous file with comments | « examples/content_handler_demo/BUILD.gn ('k') | examples/embedded_app/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/echo/BUILD.gn
diff --git a/examples/echo/BUILD.gn b/examples/echo/BUILD.gn
index b78a4e86fc812adc06523652181bac05cb845dba..fa4579113d4e4b640ed9f216c3f3f58097b1ab0b 100644
--- a/examples/echo/BUILD.gn
+++ b/examples/echo/BUILD.gn
@@ -2,6 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//mojo/public/mojo_application.gni")
import("//mojo/public/tools/bindings/mojom.gni")
group("echo") {
@@ -11,7 +12,7 @@ group("echo") {
]
}
-shared_library("client") {
+mojo_native_application("client") {
output_name = "echo_client"
deps = [
@@ -25,7 +26,7 @@ shared_library("client") {
sources = [ "echo_client.cc" ]
}
-shared_library("service") {
+mojo_native_application("service") {
output_name = "echo_service"
deps = [
« no previous file with comments | « examples/content_handler_demo/BUILD.gn ('k') | examples/embedded_app/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698