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

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

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

Powered by Google App Engine
This is Rietveld 408576698