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

Side by Side Diff: shell/test/BUILD.gn

Issue 943053003: Simple multi-url support for mojo apps (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebase + fix android Created 5 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 import("//mojo/public/mojo.gni")
2 import("//mojo/public/mojo_application.gni")
3 import("//mojo/public/tools/bindings/mojom.gni")
4 import("//testing/test.gni")
5
6 mojom("bindings") {
7 sources = [
8 "pingable.mojom",
9 ]
10 }
11
12 mojo_native_application("pingable_app") {
13 output_name = "pingable_app"
14
15 testonly = true
16
17 sources = [
18 "pingable_app.cc",
19 ]
20
21 deps = [
22 ":bindings",
23 "//mojo/public/cpp/application:standalone",
24 "//mojo/public/cpp/bindings:callback",
25 "//mojo/public/cpp/environment",
26 "//mojo/public/cpp/system",
27 ]
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698