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

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

Issue 789243002: Restructure public side of network service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rebase 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 | « mojo/services/BUILD.gn ('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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 "web_socket_impl.cc", 69 "web_socket_impl.cc",
70 "web_socket_impl.h", 70 "web_socket_impl.h",
71 ] 71 ]
72 72
73 deps = [ 73 deps = [
74 "//base", 74 "//base",
75 "//mojo/application", 75 "//mojo/application",
76 "//mojo/common", 76 "//mojo/common",
77 "//mojo/environment:chromium", 77 "//mojo/environment:chromium",
78 "//mojo/public/cpp/bindings", 78 "//mojo/public/cpp/bindings",
79 "//mojo/services/public/cpp/network", 79 "//mojo/services/network/public/cpp",
80 "//mojo/services/public/interfaces/network", 80 "//mojo/services/network/public/interfaces",
81 "//net", 81 "//net",
82 "//url", 82 "//url",
83 ] 83 ]
84 } 84 }
85 85
86 source_set("sources") { 86 source_set("sources") {
87 visibility = [ ":*" ] 87 visibility = [ ":*" ]
88 88
89 sources = [ 89 sources = [
90 "main.cc", 90 "main.cc",
91 ] 91 ]
92 92
93 deps = [ 93 deps = [
94 ":lib", 94 ":lib",
95 "//base", 95 "//base",
96 "//mojo/application", 96 "//mojo/application",
97 "//mojo/public/c/system:for_shared_library", 97 "//mojo/public/c/system:for_shared_library",
98 "//mojo/public/cpp/bindings:bindings", 98 "//mojo/public/cpp/bindings:bindings",
99 "//mojo/services/public/cpp/network", 99 "//mojo/services/network/public/cpp",
100 "//mojo/services/public/interfaces/network", 100 "//mojo/services/network/public/interfaces",
101 ] 101 ]
102 } 102 }
103 103
104 mojo_native_application("apptests") { 104 mojo_native_application("apptests") {
105 output_name = "network_service_apptests" 105 output_name = "network_service_apptests"
106 testonly = true 106 testonly = true
107 107
108 sources = [ 108 sources = [
109 "udp_socket_apptest.cc", 109 "udp_socket_apptest.cc",
110 ] 110 ]
111 111
112 deps = [ 112 deps = [
113 ":network", 113 ":network",
114 "//base", 114 "//base",
115 "//mojo/application", 115 "//mojo/application",
116 "//mojo/application:test_support", 116 "//mojo/application:test_support",
117 "//mojo/public/cpp/bindings", 117 "//mojo/public/cpp/bindings",
118 "//mojo/public/cpp/bindings:callback", 118 "//mojo/public/cpp/bindings:callback",
119 "//mojo/services/public/cpp/network", 119 "//mojo/services/network/public/cpp",
120 "//mojo/services/public/interfaces/network", 120 "//mojo/services/network/public/interfaces",
121 "//net", 121 "//net",
122 "//testing/gtest", 122 "//testing/gtest",
123 ] 123 ]
124 } 124 }
OLDNEW
« no previous file with comments | « mojo/services/BUILD.gn ('k') | mojo/services/network/cookie_store_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698