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

Side by Side Diff: headless/BUILD.gn

Issue 2871123003: [Headless] Have public_deps chain reflect inclusion chain (Closed)
Patch Set: Response to review Created 3 years, 7 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 | « components/printing/browser/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/util/process_version.gni") 6 import("//build/util/process_version.gni")
7 import("//headless/headless.gni") 7 import("//headless/headless.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 "lib/renderer/headless_print_web_view_helper_delegate.h", 317 "lib/renderer/headless_print_web_view_helper_delegate.h",
318 ] 318 ]
319 } 319 }
320 320
321 public_deps = [ 321 public_deps = [
322 "//base", 322 "//base",
323 "//net", 323 "//net",
324 ] 324 ]
325 325
326 if (enable_basic_printing) { 326 if (enable_basic_printing) {
327 public_deps += [ "//skia" ] 327 public_deps += [ "//components/printing/browser" ]
328 } 328 }
329 329
330 deps = [ 330 deps = [
331 ":gen_devtools_client_api", 331 ":gen_devtools_client_api",
332 ":tab_socket", 332 ":tab_socket",
333 ":version_header", 333 ":version_header",
334 "//components/crash/content/browser", 334 "//components/crash/content/browser",
335 "//components/security_state/content", 335 "//components/security_state/content",
336 "//components/security_state/core", 336 "//components/security_state/core",
337 "//content/public/app:both", 337 "//content/public/app:both",
(...skipping 10 matching lines...) Expand all
348 "//url", 348 "//url",
349 ] 349 ]
350 350
351 if (is_mac) { 351 if (is_mac) {
352 deps += [ ":mac_helpers" ] 352 deps += [ ":mac_helpers" ]
353 } else { 353 } else {
354 deps += [ "//ui/aura" ] 354 deps += [ "//ui/aura" ]
355 } 355 }
356 356
357 if (enable_basic_printing) { 357 if (enable_basic_printing) {
358 deps += [ 358 deps += [ "//components/printing/renderer" ]
359 "//components/printing/browser",
360 "//components/printing/renderer",
361 ]
362 } 359 }
363 360
364 if (headless_use_embedded_resources) { 361 if (headless_use_embedded_resources) {
365 deps += [ ":embed_resources" ] 362 deps += [ ":embed_resources" ]
366 sources += [ 363 sources += [
367 "$root_gen_dir/headless/embedded_resource_pak.cc", 364 "$root_gen_dir/headless/embedded_resource_pak.cc",
368 "$root_gen_dir/headless/embedded_resource_pak.h", 365 "$root_gen_dir/headless/embedded_resource_pak.h",
369 ] 366 ]
370 } else { 367 } else {
371 deps += [ ":pak" ] 368 deps += [ ":pak" ]
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 521
525 executable("headless_example") { 522 executable("headless_example") {
526 sources = [ 523 sources = [
527 "app/headless_example.cc", 524 "app/headless_example.cc",
528 ] 525 ]
529 526
530 deps = [ 527 deps = [
531 ":headless_shell_lib", 528 ":headless_shell_lib",
532 ] 529 ]
533 } 530 }
OLDNEW
« no previous file with comments | « components/printing/browser/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698