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

Side by Side Diff: mojo/application_manager/BUILD.gn

Issue 814273005: Move application_manager from /mojo to /shell. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Update include guards. Created 5 years, 11 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 | « mojo/BUILD.gn ('k') | mojo/application_manager/application_loader.h » ('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 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("//mojo/public/tools/bindings/mojom.gni")
6
7 # GYP version: mojo.gyp:mojo_application_manager
8 component("application_manager") {
9 output_name = "mojo_application_manager"
10 sources = [
11 "application_loader.cc",
12 "application_loader.h",
13 "application_manager.cc",
14 "application_manager.h",
15 "application_manager_export.h",
16 "shell_impl.cc",
17 "shell_impl.h",
18 ]
19
20 defines = [ "MOJO_APPLICATION_MANAGER_IMPLEMENTATION" ]
21
22 public_deps = [
23 "//base",
24 "//mojo/common",
25 "//mojo/public/interfaces/application:application",
26 "//mojo/services/network/public/interfaces",
27 "//url",
28 ]
29 deps = [
30 "//base/third_party/dynamic_annotations",
31 "//url",
32 "//mojo/edk/system",
33 "//mojo/environment:chromium",
34 "//mojo/public/cpp/application",
35 "//mojo/public/cpp/bindings",
36 "//mojo/services/content_handler/public/interfaces",
37 ]
38 }
39
40 # GYP version: mojo.gyp:mojo_application_manager_unittests
41 test("mojo_application_manager_unittests") {
42 sources = [
43 "application_manager_unittest.cc",
44 ]
45
46 deps = [
47 ":application_manager",
48 ":test_bindings",
49 "//base",
50 "//mojo/application",
51 "//mojo/common",
52 "//mojo/edk/test:run_all_unittests",
53 "//mojo/environment:chromium",
54 "//mojo/public/cpp/bindings",
55 "//testing/gtest",
56 "//url",
57 ]
58 }
59
60 mojom("test_bindings") {
61 sources = [
62 "test.mojom",
63 ]
64 }
OLDNEW
« no previous file with comments | « mojo/BUILD.gn ('k') | mojo/application_manager/application_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698