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

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

Issue 1782053004: Change how the quota system computes the total poolsize for temporary storage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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
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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 "//content:content_implementation", 292 "//content:content_implementation",
293 ] 293 ]
294 294
295 public_deps = [ 295 public_deps = [
296 "//mojo/public/cpp/bindings", 296 "//mojo/public/cpp/bindings",
297 "//mojo/public/cpp/system", 297 "//mojo/public/cpp/system",
298 "//services/service_manager/public/cpp", 298 "//services/service_manager/public/cpp",
299 299
300 # We expose skia headers in the public API. 300 # We expose skia headers in the public API.
301 "//skia", 301 "//skia",
302
303 # We expose storage headers for quota in the public API.
304 "//storage/browser",
302 "//third_party/WebKit/public:mojo_bindings", 305 "//third_party/WebKit/public:mojo_bindings",
303 ] 306 ]
304 deps = [ 307 deps = [
305 "//cc", 308 "//cc",
306 "//content/browser", # Must not be public_deps! 309 "//content/browser", # Must not be public_deps!
307 "//content/public/common:common_sources", 310 "//content/public/common:common_sources",
308 "//device/geolocation", 311 "//device/geolocation",
309 "//device/power_save_blocker", 312 "//device/power_save_blocker",
310 "//gpu", 313 "//gpu",
311 "//media", 314 "//media",
312 "//net", 315 "//net",
313 "//ppapi/c", 316 "//ppapi/c",
314 "//storage/browser",
315 "//ui/accessibility", 317 "//ui/accessibility",
316 "//ui/base", 318 "//ui/base",
317 "//ui/events", 319 "//ui/events",
318 "//ui/gl", 320 "//ui/gl",
319 "//ui/surface", 321 "//ui/surface",
320 ] 322 ]
321 323
322 allow_circular_includes_from = [ 324 allow_circular_includes_from = [
323 # This target is a pair with content/browser. They always go together and 325 # This target is a pair with content/browser. They always go together and
324 # include headers from each other. 326 # include headers from each other.
325 "//content/browser", 327 "//content/browser",
326 ] 328 ]
327 329
328 if (is_android) { 330 if (is_android) {
329 deps += [ "//ui/android" ] 331 deps += [ "//ui/android" ]
330 } 332 }
331 333
332 if (use_aura) { 334 if (use_aura) {
333 sources -= [ "context_factory.h" ] 335 sources -= [ "context_factory.h" ]
334 deps += [ "//ui/aura" ] 336 deps += [ "//ui/aura" ]
335 } 337 }
336 } 338 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698