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

Side by Side Diff: mojo/services/test_service/BUILD.gn

Issue 1049993002: Get mojo_shell building inside chromium checkout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 5 years, 8 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 # Copyright 2014 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("//third_party/mojo/src/mojo/public/mojo_application.gni")
6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
7
8 mojom("bindings") {
9 sources = [
10 "test_request_tracker.mojom",
11 "test_service.mojom",
12 ]
13 }
14
15 mojo_native_application("test_app") {
16 sources = [
17 "test_service_application.cc",
18 "test_service_application.h",
19 "test_service_impl.cc",
20 "test_service_impl.h",
21 "test_time_service_impl.cc",
22 "test_time_service_impl.h",
23 "tracked_service.cc",
24 "tracked_service.h",
25 ]
26
27 deps = [
28 ":bindings",
29 "//base",
30 "//base:i18n",
31 "//third_party/mojo/src/mojo/public/cpp/application",
32 "//third_party/mojo/src/mojo/public/cpp/application:standalone",
33 "//third_party/mojo/src/mojo/public/cpp/bindings",
34 "//third_party/mojo/src/mojo/public/cpp/system",
35 "//third_party/mojo/src/mojo/public/cpp/utility",
36 ]
37 }
38
39 mojo_native_application("test_request_tracker_app") {
40 sources = [
41 "test_request_tracker_application.cc",
42 "test_request_tracker_application.h",
43 "test_request_tracker_impl.cc",
44 "test_request_tracker_impl.h",
45 "test_time_service_impl.cc",
46 "test_time_service_impl.h",
47 "tracked_service.cc",
48 "tracked_service.h",
49 ]
50
51 deps = [
52 ":bindings",
53 "//base",
54 "//base:i18n",
55 "//third_party/mojo/src/mojo/public/cpp/application",
56 "//third_party/mojo/src/mojo/public/cpp/application:standalone",
57 "//third_party/mojo/src/mojo/public/cpp/bindings",
58 "//third_party/mojo/src/mojo/public/cpp/system",
59 "//third_party/mojo/src/mojo/public/cpp/utility",
60 ]
61 }
OLDNEW
« no previous file with comments | « mojo/services/surfaces/surfaces_service_application.cc ('k') | mojo/services/test_service/test_request_tracker.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698