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

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

Issue 2458833005: Move printing defines to buildflag system. (Closed)
Patch Set: Merge 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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 "//media/gpu/ipc/common", 435 "//media/gpu/ipc/common",
435 "//media/midi", 436 "//media/midi",
436 "//media/midi:mojo_cpp_sources", 437 "//media/midi:mojo_cpp_sources",
437 "//media/mojo/interfaces:remoting", 438 "//media/mojo/interfaces:remoting",
438 "//mojo/common", 439 "//mojo/common",
439 "//mojo/edk/js", 440 "//mojo/edk/js",
440 "//mojo/public/cpp/bindings", 441 "//mojo/public/cpp/bindings",
441 "//mojo/public/js", 442 "//mojo/public/js",
442 "//net", 443 "//net",
443 "//ppapi/features", 444 "//ppapi/features",
445 "//printing/features",
444 "//sandbox", 446 "//sandbox",
445 "//services/service_manager/public/cpp", 447 "//services/service_manager/public/cpp",
446 "//services/service_manager/public/interfaces", 448 "//services/service_manager/public/interfaces",
447 "//skia", 449 "//skia",
448 "//storage/common", 450 "//storage/common",
449 "//third_party/WebKit/public:blink", 451 "//third_party/WebKit/public:blink",
450 "//third_party/WebKit/public:mojo_bindings", 452 "//third_party/WebKit/public:mojo_bindings",
451 "//third_party/boringssl", 453 "//third_party/boringssl",
452 "//third_party/icu", 454 "//third_party/icu",
453 "//third_party/libjingle", 455 "//third_party/libjingle",
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
908 # For the defines in mojo_media_config. 910 # For the defines in mojo_media_config.
909 public_configs = [ "//media/mojo/services:mojo_media_config" ] 911 public_configs = [ "//media/mojo/services:mojo_media_config" ]
910 } 912 }
911 913
912 if (!is_component_build) { 914 if (!is_component_build) {
913 public_deps = [ 915 public_deps = [
914 ":renderer", 916 ":renderer",
915 ] 917 ]
916 } 918 }
917 } 919 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698