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

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

Issue 1161463004: Move URL Loader creation to a separate factory object. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 import("//third_party/mojo/src/mojo/public/mojo_application.gni") 5 import("//third_party/mojo/src/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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 "network_service_impl.cc", 65 "network_service_impl.cc",
66 "network_service_impl.h", 66 "network_service_impl.h",
67 "tcp_bound_socket_impl.cc", 67 "tcp_bound_socket_impl.cc",
68 "tcp_bound_socket_impl.h", 68 "tcp_bound_socket_impl.h",
69 "tcp_connected_socket_impl.cc", 69 "tcp_connected_socket_impl.cc",
70 "tcp_connected_socket_impl.h", 70 "tcp_connected_socket_impl.h",
71 "tcp_server_socket_impl.cc", 71 "tcp_server_socket_impl.cc",
72 "tcp_server_socket_impl.h", 72 "tcp_server_socket_impl.h",
73 "udp_socket_impl.cc", 73 "udp_socket_impl.cc",
74 "udp_socket_impl.h", 74 "udp_socket_impl.h",
75 "url_loader_factory_impl.cc",
76 "url_loader_factory_impl.h",
75 "url_loader_impl.cc", 77 "url_loader_impl.cc",
76 "url_loader_impl.h", 78 "url_loader_impl.h",
77 "web_socket_impl.cc", 79 "web_socket_impl.cc",
78 "web_socket_impl.h", 80 "web_socket_impl.h",
79 ] 81 ]
80 82
81 deps = [ 83 deps = [
82 "//base", 84 "//base",
83 "//mojo/application/public/cpp", 85 "//mojo/application/public/cpp",
84 "//mojo/services/network/public/cpp", 86 "//mojo/services/network/public/cpp",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 "//base", 125 "//base",
124 "//mojo/application/public/cpp:test_support", 126 "//mojo/application/public/cpp:test_support",
125 "//mojo/services/network/public/cpp", 127 "//mojo/services/network/public/cpp",
126 "//mojo/services/network/public/interfaces", 128 "//mojo/services/network/public/interfaces",
127 "//net", 129 "//net",
128 "//net:test_support", 130 "//net:test_support",
129 "//testing/gtest", 131 "//testing/gtest",
130 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", 132 "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
131 ] 133 ]
132 } 134 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698