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

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: 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: examples/echo/BUILD.gn
diff --git a/examples/echo/BUILD.gn b/examples/echo/BUILD.gn
index b78a4e86fc812adc06523652181bac05cb845dba..25b1bc4a2edb3a9bcedba72e3ca8629e1c561f81 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_binary_application("client") {
output_name = "echo_client"
deps = [
@@ -25,7 +26,7 @@ shared_library("client") {
sources = [ "echo_client.cc" ]
}
-shared_library("service") {
+mojo_binary_application("service") {
output_name = "echo_service"
deps = [

Powered by Google App Engine
This is Rietveld 408576698