OLD | NEW |
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 source_set("network") { |
6 deps = [ | 6 deps = [ |
7 "//base", | 7 "//base", |
8 "//mojo/common", | 8 "//mojo/common", |
9 "//mojo/environment:chromium", | 9 "//mojo/environment:chromium", |
10 "//mojo/public/cpp/application", | 10 "//mojo/public/cpp/application:chromium", |
11 "//mojo/services/public/interfaces/network", | 11 "//mojo/services/public/interfaces/network", |
12 "//net", | 12 "//net", |
13 "//url", | 13 "//url", |
14 ] | 14 ] |
15 | 15 |
16 sources = [ | 16 sources = [ |
17 "cookie_store_impl.cc", | 17 "cookie_store_impl.cc", |
18 "cookie_store_impl.h", | 18 "cookie_store_impl.h", |
19 "network_context.cc", | 19 "network_context.cc", |
20 "network_context.h", | 20 "network_context.h", |
21 "network_service_impl.cc", | 21 "network_service_impl.cc", |
22 "network_service_impl.h", | 22 "network_service_impl.h", |
23 "url_loader_impl.cc", | 23 "url_loader_impl.cc", |
24 "url_loader_impl.h", | 24 "url_loader_impl.h", |
25 ] | 25 ] |
26 } | 26 } |
OLD | NEW |