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

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

Issue 713513002: Change mojo application name to {name}.mojo (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Add missing library. Created 6 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/native_viewport/BUILD.gn ('k') | mojo/services/public/cpp/view_manager/BUILD.gn » ('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 # GYP version: mojo/mojo_services.gypi:mojo_network_service 5 import("//mojo/public/mojo_application.gni")
6 shared_library("network") { 6
7 mojo_native_application("network") {
7 output_name = "network_service" 8 output_name = "network_service"
8 sources = [ "main.cc" ] 9 sources = [ "main.cc" ]
9 deps = [ 10 deps = [
10 ":lib", 11 ":lib",
11 "//base", 12 "//base",
12 "//mojo/application", 13 "//mojo/application",
13 "//mojo/public/c/system:for_shared_library", 14 "//mojo/public/c/system:for_shared_library",
14 "//mojo/public/cpp/bindings:bindings", 15 "//mojo/public/cpp/bindings:bindings",
15 "//mojo/services/public/cpp/network", 16 "//mojo/services/public/cpp/network",
16 "//mojo/services/public/interfaces/network", 17 "//mojo/services/public/interfaces/network",
17 ] 18 ]
18 } 19 }
19 20
20 # GYP version: mojo/mojo_services.gypi:mojo_network_service_lib
21 source_set("lib") { 21 source_set("lib") {
22 sources = [ 22 sources = [
23 "cookie_store_impl.cc", 23 "cookie_store_impl.cc",
24 "cookie_store_impl.h", 24 "cookie_store_impl.h",
25 "net_adapters.cc", 25 "net_adapters.cc",
26 "net_adapters.h", 26 "net_adapters.h",
27 "net_address_type_converters.cc", 27 "net_address_type_converters.cc",
28 "net_address_type_converters.h", 28 "net_address_type_converters.h",
29 "network_context.cc", 29 "network_context.cc",
30 "network_context.h", 30 "network_context.h",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 "//mojo/edk/system", 72 "//mojo/edk/system",
73 "//mojo/edk/test:run_all_unittests", 73 "//mojo/edk/test:run_all_unittests",
74 "//mojo/environment:chromium", 74 "//mojo/environment:chromium",
75 "//mojo/services/public/cpp/network", 75 "//mojo/services/public/cpp/network",
76 "//mojo/services/public/interfaces/network", 76 "//mojo/services/public/interfaces/network",
77 "//mojo/shell:test_support", 77 "//mojo/shell:test_support",
78 "//testing/gtest", 78 "//testing/gtest",
79 ] 79 ]
80 } 80 }
81 81
82 shared_library("apptests") { 82 mojo_native_application("apptests") {
83 output_name = "network_service_apptests" 83 output_name = "network_service_apptests"
84 testonly = true 84 testonly = true
85 85
86 sources = [ 86 sources = [
87 "udp_socket_apptest.cc", 87 "udp_socket_apptest.cc",
88 ] 88 ]
89 89
90 deps = [ 90 deps = [
91 ":network", 91 ":network",
92 "//base", 92 "//base",
93 "//mojo/application", 93 "//mojo/application",
94 "//mojo/application:test_support", 94 "//mojo/application:test_support",
95 "//mojo/public/c/system:for_shared_library", 95 "//mojo/public/c/system:for_shared_library",
96 "//mojo/public/cpp/bindings", 96 "//mojo/public/cpp/bindings",
97 "//mojo/services/public/cpp/network", 97 "//mojo/services/public/cpp/network",
98 "//mojo/services/public/interfaces/network", 98 "//mojo/services/public/interfaces/network",
99 ] 99 ]
100 } 100 }
OLDNEW
« no previous file with comments | « mojo/services/native_viewport/BUILD.gn ('k') | mojo/services/public/cpp/view_manager/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698