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

Unified Diff: mash/wm/BUILD.gn

Issue 1478813002: Renames example_wm to mash_wm (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 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 | « mash/example/main/main_application_delegate.cc ('k') | mash/wm/window_manager_apptest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/wm/BUILD.gn
diff --git a/mash/wm/BUILD.gn b/mash/wm/BUILD.gn
index 3aad50e75cfb69b7989fbeb92b49440afe126c1e..3cad78168c8fc312a8c25371af6bf36870d879da 100644
--- a/mash/wm/BUILD.gn
+++ b/mash/wm/BUILD.gn
@@ -7,15 +7,14 @@ import("//mojo/public/mojo_application.gni")
import("//mojo/public/tools/bindings/mojom.gni")
import("//tools/grit/repack.gni")
-group("wm") {
+group("tests") {
testonly = true
deps = [
":apptests",
- ":example_wm",
]
}
-source_set("example_wm_lib") {
+source_set("lib") {
sources = [
"background_layout.cc",
"background_layout.h",
@@ -75,13 +74,15 @@ source_set("example_wm_lib") {
]
}
-mojo_native_application("example_wm") {
+mojo_native_application("wm") {
+ output_name = "mash_wm"
+
sources = [
"main.cc",
]
deps = [
- ":example_wm_lib",
+ ":lib",
":resources",
"//mojo/application/public/cpp",
]
@@ -112,7 +113,7 @@ repack("resources") {
}
mojo_native_application("apptests") {
- output_name = "mus_example_wm_apptests"
+ output_name = "mash_wm_apptests"
testonly = true
sources = [
@@ -134,7 +135,7 @@ mojo_native_application("apptests") {
]
data_deps = [
- ":example_wm",
+ ":wm",
]
}
@@ -146,7 +147,7 @@ source_set("unittests") {
]
deps = [
- ":example_wm_lib",
+ ":lib",
"//base",
"//base/test:test_config",
"//components/mus/public/cpp",
« no previous file with comments | « mash/example/main/main_application_delegate.cc ('k') | mash/wm/window_manager_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698