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

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

Issue 722943004: Remove network_service_unittests target, now that its replacement network_service_apptests is runni… (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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/BUILD.gn ('k') | mojo/services/network/udp_socket_unittest.cc » ('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 mojo_native_application("network") { 7 mojo_native_application("network") {
8 output_name = "network_service" 8 output_name = "network_service"
9 sources = [ "main.cc" ] 9 sources = [ "main.cc" ]
10 deps = [ 10 deps = [
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "//mojo/application", 49 "//mojo/application",
50 "//mojo/common", 50 "//mojo/common",
51 "//mojo/environment:chromium", 51 "//mojo/environment:chromium",
52 "//mojo/services/public/cpp/network", 52 "//mojo/services/public/cpp/network",
53 "//mojo/services/public/interfaces/network", 53 "//mojo/services/public/interfaces/network",
54 "//net", 54 "//net",
55 "//url", 55 "//url",
56 ] 56 ]
57 } 57 }
58 58
59 # TODO(yzshen): Remove this test once the apptests is run on bots.
60 test("unittests") {
61 output_name = "network_service_unittests"
62
63 sources = [
64 "udp_socket_unittest.cc",
65 ]
66
67 deps = [
68 ":network",
69 "//base",
70 "//base/test:run_all_unittests",
71 "//base/test:test_support",
72 "//mojo/application_manager",
73 "//mojo/edk/system",
74 "//mojo/environment:chromium",
75 "//mojo/services/public/cpp/network",
76 "//mojo/services/public/interfaces/network",
77 "//mojo/shell:test_support",
78 "//testing/gtest",
79 ]
80 }
81
82 mojo_native_application("apptests") { 59 mojo_native_application("apptests") {
83 output_name = "network_service_apptests" 60 output_name = "network_service_apptests"
84 testonly = true 61 testonly = true
85 62
86 sources = [ 63 sources = [
87 "udp_socket_apptest.cc", 64 "udp_socket_apptest.cc",
88 ] 65 ]
89 66
90 deps = [ 67 deps = [
91 ":network", 68 ":network",
92 "//base", 69 "//base",
93 "//mojo/application", 70 "//mojo/application",
94 "//mojo/application:test_support", 71 "//mojo/application:test_support",
95 "//mojo/public/c/system:for_shared_library", 72 "//mojo/public/c/system:for_shared_library",
96 "//mojo/public/cpp/bindings", 73 "//mojo/public/cpp/bindings",
97 "//mojo/services/public/cpp/network", 74 "//mojo/services/public/cpp/network",
98 "//mojo/services/public/interfaces/network", 75 "//mojo/services/public/interfaces/network",
99 ] 76 ]
100 } 77 }
OLDNEW
« no previous file with comments | « mojo/BUILD.gn ('k') | mojo/services/network/udp_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698