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

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

Issue 2411433002: Move ENABLE_PEPPER_CDMS to a buildflag header. (Closed)
Patch Set: fix Created 4 years, 2 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/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("//third_party/webrtc/build/webrtc.gni") 8 import("//third_party/webrtc/build/webrtc.gni")
9 import("//third_party/widevine/cdm/widevine.gni")
9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
10 11
11 if (is_component_build) { 12 if (is_component_build) {
12 link_target_type = "source_set" 13 link_target_type = "source_set"
13 } else { 14 } else {
14 link_target_type = "static_library" 15 link_target_type = "static_library"
15 } 16 }
16 target(link_target_type, "renderer") { 17 target(link_target_type, "renderer") {
17 # Only the public target should depend on this. All other targets (even 18 # Only the public target should depend on this. All other targets (even
18 # internal content ones) should depend on the public one. 19 # internal content ones) should depend on the public one.
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 "//services/shell/public/cpp", 442 "//services/shell/public/cpp",
442 "//services/shell/public/interfaces", 443 "//services/shell/public/interfaces",
443 "//skia", 444 "//skia",
444 "//storage/common", 445 "//storage/common",
445 "//third_party/WebKit/public:blink", 446 "//third_party/WebKit/public:blink",
446 "//third_party/WebKit/public:mojo_bindings", 447 "//third_party/WebKit/public:mojo_bindings",
447 "//third_party/boringssl", 448 "//third_party/boringssl",
448 "//third_party/icu", 449 "//third_party/icu",
449 "//third_party/libjingle", 450 "//third_party/libjingle",
450 "//third_party/libyuv", 451 "//third_party/libyuv",
452 "//third_party/widevine/cdm:cdm_features",
451 "//third_party/widevine/cdm:version_h", 453 "//third_party/widevine/cdm:version_h",
452 "//ui/accessibility", 454 "//ui/accessibility",
453 "//ui/base", 455 "//ui/base",
454 "//ui/base/ime", 456 "//ui/base/ime",
455 "//ui/display", 457 "//ui/display",
456 "//ui/events:dom_keycode_converter", 458 "//ui/events:dom_keycode_converter",
457 "//ui/events:events_base", 459 "//ui/events:events_base",
458 "//ui/events/blink", 460 "//ui/events/blink",
459 "//ui/gfx/geometry/mojo", 461 "//ui/gfx/geometry/mojo",
460 "//ui/gl", 462 "//ui/gl",
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 # For the defines in mojo_media_config. 902 # For the defines in mojo_media_config.
901 public_configs = [ "//media/mojo/services:mojo_media_config" ] 903 public_configs = [ "//media/mojo/services:mojo_media_config" ]
902 } 904 }
903 905
904 if (!is_component_build) { 906 if (!is_component_build) {
905 public_deps = [ 907 public_deps = [
906 ":renderer", 908 ":renderer",
907 ] 909 ]
908 } 910 }
909 } 911 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698