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

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

Issue 2767193005: Fix public dependencies on //ipc (Closed)
Patch Set: Created 3 years, 9 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 | « content/child/BUILD.gn ('k') | 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 "zygote_handle_linux.h", 278 "zygote_handle_linux.h",
279 "zygote_host_linux.h", 279 "zygote_host_linux.h",
280 ] 280 ]
281 configs += [ 281 configs += [
282 "//build/config:precompiled_headers", 282 "//build/config:precompiled_headers",
283 "//build/config/compiler:wexit_time_destructors", 283 "//build/config/compiler:wexit_time_destructors",
284 "//content:content_implementation", 284 "//content:content_implementation",
285 ] 285 ]
286 286
287 public_deps = [ 287 public_deps = [
288 "//ipc",
288 "//mojo/public/cpp/bindings", 289 "//mojo/public/cpp/bindings",
289 "//mojo/public/cpp/system", 290 "//mojo/public/cpp/system",
290 "//services/service_manager/public/cpp", 291 "//services/service_manager/public/cpp",
291 292
292 # We expose skia headers in the public API. 293 # We expose skia headers in the public API.
293 "//skia", 294 "//skia",
294 295
295 # We expose storage headers for quota in the public API. 296 # We expose storage headers for quota in the public API.
296 "//storage/browser", 297 "//storage/browser",
297 "//third_party/WebKit/public:mojo_bindings", 298 "//third_party/WebKit/public:mojo_bindings",
(...skipping 27 matching lines...) Expand all
325 326
326 if (use_aura) { 327 if (use_aura) {
327 sources -= [ "context_factory.h" ] 328 sources -= [ "context_factory.h" ]
328 deps += [ "//ui/aura" ] 329 deps += [ "//ui/aura" ]
329 } 330 }
330 331
331 if (!is_android) { 332 if (!is_android) {
332 sources += [ "devtools_frontend_host.h" ] 333 sources += [ "devtools_frontend_host.h" ]
333 } 334 }
334 } 335 }
OLDNEW
« no previous file with comments | « content/child/BUILD.gn ('k') | content/public/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698