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

Side by Side Diff: content/public/browser/BUILD.gn

Issue 2797093002: Add net public_deps in content/public/common:common_sources, and the followon public_deps in conten… (Closed)
Patch Set: 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/public/common/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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 # See //content/BUILD.gn for how this works. 7 # See //content/BUILD.gn for how this works.
8 group("browser") { 8 group("browser") {
9 if (is_component_build) { 9 if (is_component_build) {
10 public_deps = [ 10 public_deps = [
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 "zygote_handle_linux.h", 285 "zygote_handle_linux.h",
286 "zygote_host_linux.h", 286 "zygote_host_linux.h",
287 ] 287 ]
288 configs += [ 288 configs += [
289 "//build/config:precompiled_headers", 289 "//build/config:precompiled_headers",
290 "//build/config/compiler:wexit_time_destructors", 290 "//build/config/compiler:wexit_time_destructors",
291 "//content:content_implementation", 291 "//content:content_implementation",
292 ] 292 ]
293 293
294 public_deps = [ 294 public_deps = [
295 "//content/public/common:common_sources",
295 "//ipc", 296 "//ipc",
296 "//mojo/public/cpp/bindings", 297 "//mojo/public/cpp/bindings",
297 "//mojo/public/cpp/system", 298 "//mojo/public/cpp/system",
298 "//services/service_manager/public/cpp", 299 "//services/service_manager/public/cpp",
299 300
300 # We expose skia headers in the public API. 301 # We expose skia headers in the public API.
301 "//skia", 302 "//skia",
302 303
303 # We expose storage headers for quota in the public API. 304 # We expose storage headers for quota in the public API.
304 "//storage/browser", 305 "//storage/browser",
305 "//third_party/WebKit/public:mojo_bindings", 306 "//third_party/WebKit/public:mojo_bindings",
306 ] 307 ]
307 deps = [ 308 deps = [
308 "//cc", 309 "//cc",
309 "//content/browser", # Must not be public_deps! 310 "//content/browser", # Must not be public_deps!
310 "//content/public/common:common_sources",
311 "//device/geolocation", 311 "//device/geolocation",
312 "//device/power_save_blocker", 312 "//device/power_save_blocker",
313 "//gpu", 313 "//gpu",
314 "//media", 314 "//media",
315 "//net", 315 "//net",
316 "//ppapi/c", 316 "//ppapi/c",
317 "//ui/accessibility", 317 "//ui/accessibility",
318 "//ui/base", 318 "//ui/base",
319 "//ui/events", 319 "//ui/events",
320 "//ui/gl", 320 "//ui/gl",
(...skipping 12 matching lines...) Expand all
333 333
334 if (use_aura) { 334 if (use_aura) {
335 sources -= [ "context_factory.h" ] 335 sources -= [ "context_factory.h" ]
336 deps += [ "//ui/aura" ] 336 deps += [ "//ui/aura" ]
337 } 337 }
338 338
339 if (!is_android) { 339 if (!is_android) {
340 sources += [ "devtools_frontend_host.h" ] 340 sources += [ "devtools_frontend_host.h" ]
341 } 341 }
342 } 342 }
OLDNEW
« no previous file with comments | « no previous file | content/public/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698