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

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

Issue 485523004: GN: Mojo wget, sample_app, surfaces app and component build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « mojo/services/native_viewport/BUILD.gn ('k') | mojo/services/public/cpp/geometry/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 source_set("network") { 5 import("//mojo/system.gni")
6
7 # GYP version: mojo/mojo_services.gypi:mojo_network_service
8 shared_library("network") {
9 output_name = "mojo_network_service"
10
11 deps = [
12 ":lib",
13 "//mojo/services/public/interfaces/network",
14 ]
15 deps += mojo_system_for_shared_library
16
17 sources = [ "main.cc" ]
18 }
19
20 # GYP version: mojo/mojo_services.gypi:mojo_network_service_lib
21 source_set("lib") {
6 deps = [ 22 deps = [
7 "//base", 23 "//base",
8 "//mojo/common", 24 "//mojo/common",
9 "//mojo/environment:chromium", 25 "//mojo/environment:chromium",
10 "//mojo/public/cpp/application:chromium", 26 "//mojo/public/cpp/application:chromium",
11 "//mojo/services/public/interfaces/network", 27 "//mojo/services/public/interfaces/network",
12 "//net", 28 "//net",
13 "//url", 29 "//url",
14 ] 30 ]
15 31
16 sources = [ 32 sources = [
17 "cookie_store_impl.cc", 33 "cookie_store_impl.cc",
18 "cookie_store_impl.h", 34 "cookie_store_impl.h",
19 "network_context.cc", 35 "network_context.cc",
20 "network_context.h", 36 "network_context.h",
21 "network_service_impl.cc", 37 "network_service_impl.cc",
22 "network_service_impl.h", 38 "network_service_impl.h",
23 "url_loader_impl.cc", 39 "url_loader_impl.cc",
24 "url_loader_impl.h", 40 "url_loader_impl.h",
25 ] 41 ]
26 } 42 }
OLDNEW
« no previous file with comments | « mojo/services/native_viewport/BUILD.gn ('k') | mojo/services/public/cpp/geometry/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698