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

Side by Side Diff: mash/BUILD.gn

Issue 1994763002: Wires up WorkspaceLayoutManager in mash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tweaks Created 4 years, 7 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 15 matching lines...) Expand all
26 testonly = true 26 testonly = true
27 27
28 deps = [ 28 deps = [
29 ":all", 29 ":all",
30 "//mash/browser", 30 "//mash/browser",
31 "//mash/webtest", 31 "//mash/webtest",
32 ] 32 ]
33 } 33 }
34 34
35 test("mash_unittests") { 35 test("mash_unittests") {
36 sources = [
37 "test/mash_test_suite.cc",
38 "test/mash_test_suite.h",
39 "test/mash_unittests.cc",
40 ]
36 deps = [ 41 deps = [
37 "//base", 42 "//base",
38 "//base/test:test_config",
39 "//base/test:test_support", 43 "//base/test:test_support",
40 "//mash/wm:unittests", 44 "//mash/wm:unittests",
41 "//mojo/platform_handle:platform_handle_impl", 45 "//mojo/platform_handle:platform_handle_impl",
42 "//services/shell/background:main", 46 "//services/shell/background:main",
43 "//services/shell/public/cpp/test:run_all_shelltests", 47 "//ui/aura",
48 "//ui/base",
49 "//ui/compositor:test_support",
50 "//ui/gl:test_support",
44 ] 51 ]
45 data_deps = [ 52 data_deps = [
46 ":unittests_manifest", 53 ":unittests_manifest",
47 ] 54 ]
48 } 55 }
49 56
50 mojo_application_manifest("unittests_manifest") { 57 mojo_application_manifest("unittests_manifest") {
51 type = "exe" 58 type = "exe"
52 application_name = "mash_unittests" 59 application_name = "mash_unittests"
53 source = "unittests_manifest.json" 60 source = "unittests_manifest.json"
54 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698