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

Unified Diff: mojo/examples/echo/BUILD.gn

Issue 684543003: Move //mojo/examples to //examples (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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/examples/content_handler_demo/content_handler_demo.cc ('k') | mojo/examples/echo/echo_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/examples/echo/BUILD.gn
diff --git a/mojo/examples/echo/BUILD.gn b/mojo/examples/echo/BUILD.gn
deleted file mode 100644
index b78a4e86fc812adc06523652181bac05cb845dba..0000000000000000000000000000000000000000
--- a/mojo/examples/echo/BUILD.gn
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import("//mojo/public/tools/bindings/mojom.gni")
-
-group("echo") {
- deps = [
- ":client",
- ":service"
- ]
-}
-
-shared_library("client") {
- output_name = "echo_client"
-
- deps = [
- ":bindings",
- "//mojo/public/c/system:for_shared_library",
- "//mojo/public/cpp/application:standalone",
- "//mojo/public/cpp/bindings",
- "//mojo/public/cpp/utility",
- ]
-
- sources = [ "echo_client.cc" ]
-}
-
-shared_library("service") {
- output_name = "echo_service"
-
- deps = [
- ":bindings",
- "//mojo/public/c/system:for_shared_library",
- "//mojo/public/cpp/application:standalone",
- "//mojo/public/cpp/bindings",
- "//mojo/public/cpp/utility",
- ]
-
- sources = [ "echo_service.cc" ]
-}
-
-mojom("bindings") {
- sources = [ "echo_service.mojom" ]
-}
« no previous file with comments | « mojo/examples/content_handler_demo/content_handler_demo.cc ('k') | mojo/examples/echo/echo_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698