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

Side by Side Diff: content/BUILD.gn

Issue 2817453002: Bring back the URLLoader from the old Mandoline network service. (Closed)
Patch Set: fix checkdeps Created 3 years, 8 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
« no previous file with comments | « no previous file | content/network/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 import("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 import("//build/config/nacl/config.gni") 6 import("//build/config/nacl/config.gni")
7 import("//ppapi/features/features.gni") 7 import("//ppapi/features/features.gni")
8 8
9 # Applied by targets internal to content. 9 # Applied by targets internal to content.
10 config("content_implementation") { 10 config("content_implementation") {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 # As a result, we check deps for //content/test/* only in non-component builds 53 # As a result, we check deps for //content/test/* only in non-component builds
54 # (which should verify the dependencies are correct for both component and 54 # (which should verify the dependencies are correct for both component and
55 # non-component cases equally). There are targets like 55 # non-component cases equally). There are targets like
56 # //content/browser:for_content_tests that allow content/test to depend on the 56 # //content/browser:for_content_tests that allow content/test to depend on the
57 # //content/browser target only in non-component builds (when there are no 57 # //content/browser target only in non-component builds (when there are no
58 # linking problems) for when check is enabled. 58 # linking problems) for when check is enabled.
59 59
60 if (!is_nacl_nonsfi) { 60 if (!is_nacl_nonsfi) {
61 content_shared_components = [ 61 content_shared_components = [
62 "//content/gpu:gpu_sources", 62 "//content/gpu:gpu_sources",
63 "//content/network:network_sources",
63 "//content/public/browser:browser_sources", 64 "//content/public/browser:browser_sources",
64 "//content/public/child:child_sources", 65 "//content/public/child:child_sources",
65 "//content/public/gpu:gpu_sources", 66 "//content/public/gpu:gpu_sources",
66 "//content/public/common:common_sources", 67 "//content/public/common:common_sources",
67 "//content/public/renderer:renderer_sources", 68 "//content/public/renderer:renderer_sources",
68 "//content/public/utility:utility_sources", 69 "//content/public/utility:utility_sources",
69 ] 70 ]
70 71
71 if (enable_plugins) { 72 if (enable_plugins) {
72 content_shared_components += 73 content_shared_components +=
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 sources = [ 150 sources = [
150 "app/sandbox_helper_win.cc", 151 "app/sandbox_helper_win.cc",
151 "public/app/sandbox_helper_win.h", 152 "public/app/sandbox_helper_win.h",
152 ] 153 ]
153 154
154 deps = [ 155 deps = [
155 "//sandbox", 156 "//sandbox",
156 ] 157 ]
157 } 158 }
158 } 159 }
OLDNEW
« no previous file with comments | « no previous file | content/network/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698