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

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

Issue 2592793002: Revert of Change how the quota system computes the total poolsize for temporary storage (Closed)
Patch Set: Created 3 years, 12 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
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 ] 292 ]
293 293
294 public_deps = [ 294 public_deps = [
295 "//device/screen_orientation/public/interfaces", 295 "//device/screen_orientation/public/interfaces",
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",
305 "//third_party/WebKit/public:mojo_bindings", 302 "//third_party/WebKit/public:mojo_bindings",
306 ] 303 ]
307 deps = [ 304 deps = [
308 "//cc", 305 "//cc",
309 "//content/browser", # Must not be public_deps! 306 "//content/browser", # Must not be public_deps!
310 "//content/public/common:common_sources", 307 "//content/public/common:common_sources",
311 "//device/geolocation", 308 "//device/geolocation",
312 "//device/power_save_blocker", 309 "//device/power_save_blocker",
313 "//gpu", 310 "//gpu",
314 "//media", 311 "//media",
315 "//net", 312 "//net",
316 "//ppapi/c", 313 "//ppapi/c",
314 "//storage/browser",
317 "//ui/accessibility", 315 "//ui/accessibility",
318 "//ui/base", 316 "//ui/base",
319 "//ui/events", 317 "//ui/events",
320 "//ui/gl", 318 "//ui/gl",
321 "//ui/surface", 319 "//ui/surface",
322 ] 320 ]
323 321
324 allow_circular_includes_from = [ 322 allow_circular_includes_from = [
325 # This target is a pair with content/browser. They always go together and 323 # This target is a pair with content/browser. They always go together and
326 # include headers from each other. 324 # include headers from each other.
327 "//content/browser", 325 "//content/browser",
328 ] 326 ]
329 327
330 if (is_android) { 328 if (is_android) {
331 deps += [ "//ui/android" ] 329 deps += [ "//ui/android" ]
332 } 330 }
333 331
334 if (use_aura) { 332 if (use_aura) {
335 sources -= [ "context_factory.h" ] 333 sources -= [ "context_factory.h" ]
336 deps += [ "//ui/aura" ] 334 deps += [ "//ui/aura" ]
337 } 335 }
338 } 336 }
OLDNEW
« no previous file with comments | « content/browser/storage_partition_impl_map.cc ('k') | content/public/browser/content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698