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

Side by Side Diff: content/renderer/BUILD.gn

Issue 2458833005: Move printing defines to buildflag system. (Closed)
Patch Set: Missing file 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni")
9 import("//third_party/webrtc/build/webrtc.gni") 10 import("//third_party/webrtc/build/webrtc.gni")
10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 11 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
11 12
12 if (is_component_build) { 13 if (is_component_build) {
13 link_target_type = "source_set" 14 link_target_type = "source_set"
14 } else { 15 } else {
15 link_target_type = "static_library" 16 link_target_type = "static_library"
16 } 17 }
17 target(link_target_type, "renderer") { 18 target(link_target_type, "renderer") {
18 # Only the public target should depend on this. All other targets (even 19 # Only the public target should depend on this. All other targets (even
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 "//media/gpu/ipc/common", 434 "//media/gpu/ipc/common",
434 "//media/midi", 435 "//media/midi",
435 "//media/midi:mojo_cpp_sources", 436 "//media/midi:mojo_cpp_sources",
436 "//media/mojo/interfaces:remoting", 437 "//media/mojo/interfaces:remoting",
437 "//mojo/common", 438 "//mojo/common",
438 "//mojo/edk/js", 439 "//mojo/edk/js",
439 "//mojo/public/cpp/bindings", 440 "//mojo/public/cpp/bindings",
440 "//mojo/public/js", 441 "//mojo/public/js",
441 "//net", 442 "//net",
442 "//ppapi/features", 443 "//ppapi/features",
444 "//printing/features",
443 "//sandbox", 445 "//sandbox",
444 "//services/service_manager/public/cpp", 446 "//services/service_manager/public/cpp",
445 "//services/service_manager/public/interfaces", 447 "//services/service_manager/public/interfaces",
446 "//skia", 448 "//skia",
447 "//storage/common", 449 "//storage/common",
448 "//third_party/WebKit/public:blink", 450 "//third_party/WebKit/public:blink",
449 "//third_party/WebKit/public:mojo_bindings", 451 "//third_party/WebKit/public:mojo_bindings",
450 "//third_party/boringssl", 452 "//third_party/boringssl",
451 "//third_party/icu", 453 "//third_party/icu",
452 "//third_party/libjingle", 454 "//third_party/libjingle",
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
907 # For the defines in mojo_media_config. 909 # For the defines in mojo_media_config.
908 public_configs = [ "//media/mojo/services:mojo_media_config" ] 910 public_configs = [ "//media/mojo/services:mojo_media_config" ]
909 } 911 }
910 912
911 if (!is_component_build) { 913 if (!is_component_build) {
912 public_deps = [ 914 public_deps = [
913 ":renderer", 915 ":renderer",
914 ] 916 ]
915 } 917 }
916 } 918 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698