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

Side by Side Diff: services/shell/tests/BUILD.gn

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 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 unified diff | Download patch
« no previous file with comments | « services/shell/switches.cc ('k') | services/shell/tests/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//services/shell/public/cpp/service.gni")
6 import("//mojo/public/tools/bindings/mojom.gni")
7 import("//testing/test.gni")
8
9 group("tests") {
10 testonly = true
11 deps = [
12 ":service_manager_unittests",
13 ]
14 }
15
16 test("service_manager_unittests") {
17 deps = [
18 ":interfaces",
19 "//base",
20 "//base/test:test_support",
21 "//mojo/public/cpp/bindings",
22 "//mojo/public/cpp/system",
23 "//services/catalog:unittests",
24 "//services/shell",
25 "//services/shell/background:lib",
26 "//services/shell/background:main",
27 "//services/shell/background/tests:unittests",
28 "//services/shell/public/cpp",
29 "//services/shell/public/cpp/test:run_all_shelltests",
30 "//services/shell/public/interfaces",
31 "//services/shell/tests/connect",
32 "//services/shell/tests/lifecycle",
33 "//services/shell/tests/shell",
34 "//services/shell/tests/shutdown",
35 "//testing/gtest",
36 ]
37 }
38
39 mojom("interfaces") {
40 sources = [
41 "test.mojom",
42 ]
43
44 use_new_wrapper_types = false
45 }
46
47 source_set("util") {
48 sources = [
49 "util.cc",
50 "util.h",
51 ]
52 deps = [
53 "//base",
54 "//base:base_static",
55 "//mojo/edk/system",
56 "//services/shell/public/cpp:sources",
57 "//services/shell/public/interfaces",
58 "//services/shell/runner/common",
59 ]
60 }
OLDNEW
« no previous file with comments | « services/shell/switches.cc ('k') | services/shell/tests/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698