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

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

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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/services/DEPS ('k') | mojo/services/network/cookie_store_impl.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/mojo_application.gni") 5 import("//mojo/public/mojo_application.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 9
10 java_library_path = "$target_out_dir/java_library.dex.jar" 10 java_library_path = "$target_out_dir/java_library.dex.jar"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 "web_socket_impl.h", 90 "web_socket_impl.h",
91 ] 91 ]
92 92
93 deps = [ 93 deps = [
94 "//base", 94 "//base",
95 "//components/filesystem/public/interfaces", 95 "//components/filesystem/public/interfaces",
96 "//mojo/application/public/cpp", 96 "//mojo/application/public/cpp",
97 "//mojo/common:common_base", 97 "//mojo/common:common_base",
98 "//mojo/common:url_type_converters", 98 "//mojo/common:url_type_converters",
99 "//mojo/message_pump", 99 "//mojo/message_pump",
100 "//mojo/public/cpp/system:system",
100 "//mojo/services/network/public/cpp", 101 "//mojo/services/network/public/cpp",
101 "//mojo/services/network/public/interfaces", 102 "//mojo/services/network/public/interfaces",
102 "//net", 103 "//net",
103 "//net:extras", 104 "//net:extras",
104 "//net:http_server", 105 "//net:http_server",
105 "//url", 106 "//url",
106 "//sql/mojo", 107 "//sql/mojo",
107 "//third_party/mojo/src/mojo/public/cpp/system:system",
108 ] 108 ]
109 } 109 }
110 110
111 source_set("sources") { 111 source_set("sources") {
112 visibility = [ ":*" ] 112 visibility = [ ":*" ]
113 113
114 sources = [ 114 sources = [
115 "main.cc", 115 "main.cc",
116 ] 116 ]
117 117
118 deps = [ 118 deps = [
119 ":lib", 119 ":lib",
120 "//base", 120 "//base",
121 "//mojo/application/public/cpp", 121 "//mojo/application/public/cpp",
122 "//mojo/public/c/system:for_shared_library",
123 "//mojo/public/cpp/bindings:bindings",
122 "//mojo/services/network/public/cpp", 124 "//mojo/services/network/public/cpp",
123 "//mojo/services/network/public/interfaces", 125 "//mojo/services/network/public/interfaces",
124 "//third_party/mojo/src/mojo/public/c/system:for_shared_library",
125 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings",
126 ] 126 ]
127 } 127 }
128 128
129 mojo_native_application("apptests") { 129 mojo_native_application("apptests") {
130 output_name = "network_service_apptests" 130 output_name = "network_service_apptests"
131 testonly = true 131 testonly = true
132 132
133 sources = [ 133 sources = [
134 "http_server_apptest.cc", 134 "http_server_apptest.cc",
135 "udp_socket_apptest.cc", 135 "udp_socket_apptest.cc",
136 "url_loader_impl_apptest.cc", 136 "url_loader_impl_apptest.cc",
137 ] 137 ]
138 138
139 deps = [ 139 deps = [
140 ":lib", 140 ":lib",
141 ":network", 141 ":network",
142 "//base", 142 "//base",
143 "//mojo/application/public/cpp:sources", 143 "//mojo/application/public/cpp:sources",
144 "//mojo/application/public/cpp:test_support", 144 "//mojo/application/public/cpp:test_support",
145 "//mojo/common:common_base", 145 "//mojo/common:common_base",
146 "//mojo/message_pump", 146 "//mojo/message_pump",
147 "//mojo/public/cpp/bindings:callback",
147 "//mojo/services/network/public/cpp", 148 "//mojo/services/network/public/cpp",
148 "//mojo/services/network/public/interfaces", 149 "//mojo/services/network/public/interfaces",
149 "//net", 150 "//net",
150 "//net:test_support", 151 "//net:test_support",
151 "//testing/gtest", 152 "//testing/gtest",
152 "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
153 ] 153 ]
154 } 154 }
OLDNEW
« no previous file with comments | « mojo/services/DEPS ('k') | mojo/services/network/cookie_store_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698