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

Side by Side Diff: mojo/shell/public/cpp/BUILD.gn

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 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
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 # GYP version: mojo/mojo_base.gyp:mojo_application_base 5 # GYP version: mojo/mojo_base.gyp:mojo_application_base
6 source_set("cpp") { 6 source_set("cpp") {
7 public_deps = [ 7 public_deps = [
8 ":init_commandline", 8 ":init_commandline",
9 ":sources", 9 ":sources",
10 ] 10 ]
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 deps = [ 46 deps = [
47 "//base:i18n", 47 "//base:i18n",
48 "//mojo/common", 48 "//mojo/common",
49 "//mojo/converters/network", 49 "//mojo/converters/network",
50 "//mojo/environment:chromium", 50 "//mojo/environment:chromium",
51 "//mojo/message_pump", 51 "//mojo/message_pump",
52 ] 52 ]
53 53
54 public_deps = [ 54 public_deps = [
55 "//base", 55 "//base",
56 "//mojo/application/public/interfaces",
57 "//mojo/public/cpp/bindings", 56 "//mojo/public/cpp/bindings",
58 "//mojo/public/cpp/system", 57 "//mojo/public/cpp/system",
58 "//mojo/shell/public/interfaces",
59 ] 59 ]
60 } 60 }
61 61
62 source_set("init_commandline") { 62 source_set("init_commandline") {
63 sources = [ 63 sources = [
64 "lib/init_commandline.cc", 64 "lib/init_commandline.cc",
65 ] 65 ]
66 } 66 }
67 67
68 source_set("content_handler") { 68 source_set("content_handler") {
69 sources = [ 69 sources = [
70 "content_handler_factory.h", 70 "content_handler_factory.h",
71 "lib/content_handler_factory.cc", 71 "lib/content_handler_factory.cc",
72 ] 72 ]
73 deps = [ 73 deps = [
74 ":cpp", 74 ":cpp",
75 75
76 # TODO: this code should not depend on base. 76 # TODO: this code should not depend on base.
77 "//base", 77 "//base",
78 "//mojo/application/public/interfaces:interfaces_cpp_sources",
79 "//mojo/message_pump", 78 "//mojo/message_pump",
80 "//mojo/services/network/public/interfaces", 79 "//mojo/services/network/public/interfaces",
80 "//mojo/shell/public/interfaces:interfaces_cpp_sources",
81 ] 81 ]
82 } 82 }
83 83
84 source_set("test_support") { 84 source_set("test_support") {
85 testonly = true 85 testonly = true
86 sources = [ 86 sources = [
87 "application_test_base.h", 87 "application_test_base.h",
88 "lib/application_test_base.cc", 88 "lib/application_test_base.cc",
89 "lib/application_test_main.cc", 89 "lib/application_test_main.cc",
90 ] 90 ]
91 91
92 public_deps = [ 92 public_deps = [
93 ":cpp", 93 ":cpp",
94 "//testing/gtest", 94 "//testing/gtest",
95 ] 95 ]
96 96
97 deps = [ 97 deps = [
98 "//base", 98 "//base",
99 "//base/test:test_support", 99 "//base/test:test_support",
100 "//mojo/application/public/interfaces:interfaces_cpp_sources",
101 "//mojo/logging", 100 "//mojo/logging",
102 "//mojo/public/cpp/bindings", 101 "//mojo/public/cpp/bindings",
103 "//mojo/public/cpp/environment", 102 "//mojo/public/cpp/environment",
104 "//mojo/public/cpp/system", 103 "//mojo/public/cpp/system",
104 "//mojo/shell/public/interfaces:interfaces_cpp_sources",
105 ] 105 ]
106 106
107 data_deps = [] 107 data_deps = []
108 if (is_android) { 108 if (is_android) {
109 data_deps += [ "//mojo/android" ] 109 data_deps += [ "//mojo/android" ]
110 } 110 }
111 } 111 }
OLDNEW
« no previous file with comments | « mojo/shell/package_manager/package_manager_impl.cc ('k') | mojo/shell/public/cpp/app_lifetime_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698