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

Side by Side Diff: mash/BUILD.gn

Issue 2029883002: Moves mash/wm into ash/mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_static_assert
Patch Set: depend on test_wm Created 4 years, 6 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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//mojo/public/mojo_application_manifest.gni") 5 import("//mojo/public/mojo_application_manifest.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 # Target that builders build. 8 # Target that builders build.
9 group("all") { 9 group("all") {
10 testonly = true 10 testonly = true
(...skipping 21 matching lines...) Expand all
32 ] 32 ]
33 } 33 }
34 34
35 test("mash_unittests") { 35 test("mash_unittests") {
36 sources = [ 36 sources = [
37 "test/mash_test_suite.cc", 37 "test/mash_test_suite.cc",
38 "test/mash_test_suite.h", 38 "test/mash_test_suite.h",
39 "test/mash_unittests.cc", 39 "test/mash_unittests.cc",
40 ] 40 ]
41 deps = [ 41 deps = [
42 "//ash/mus:resources",
43 "//ash/mus:unittests",
42 "//base", 44 "//base",
43 "//base/test:test_support", 45 "//base/test:test_support",
44 "//mash/wm:resources",
45 "//mash/wm:unittests",
46 "//services/shell/background:main", 46 "//services/shell/background:main",
47 "//ui/aura", 47 "//ui/aura",
48 "//ui/base", 48 "//ui/base",
49 "//ui/compositor:test_support", 49 "//ui/compositor:test_support",
50 "//ui/gl:test_support", 50 "//ui/gl:test_support",
51 ] 51 ]
52 data_deps = [ 52 data_deps = [
53 ":unittests_manifest", 53 ":unittests_manifest",
54 "//mash/wm:resources", 54 "//ash/mus:resources",
msw 2016/06/02 20:28:35 q: Is this really needed in deps and data_deps?
sky 2016/06/02 21:31:51 I believe so. data_deps is really only needed by t
55 ] 55 ]
56 } 56 }
57 57
58 mojo_application_manifest("unittests_manifest") { 58 mojo_application_manifest("unittests_manifest") {
59 type = "exe" 59 type = "exe"
60 application_name = "mash_unittests" 60 application_name = "mash_unittests"
61 source = "unittests_manifest.json" 61 source = "unittests_manifest.json"
62 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698