OLD | NEW |
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("//third_party/webrtc/build/webrtc.gni") | 9 import("//third_party/webrtc/build/webrtc.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 |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 "//media/gpu", | 433 "//media/gpu", |
433 "//media/gpu/ipc/client", | 434 "//media/gpu/ipc/client", |
434 "//media/gpu/ipc/common", | 435 "//media/gpu/ipc/common", |
435 "//media/midi", | 436 "//media/midi", |
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", |
| 443 "//ppapi/features", |
442 "//sandbox", | 444 "//sandbox", |
443 "//services/shell/public/cpp", | 445 "//services/shell/public/cpp", |
444 "//services/shell/public/interfaces", | 446 "//services/shell/public/interfaces", |
445 "//skia", | 447 "//skia", |
446 "//storage/common", | 448 "//storage/common", |
447 "//third_party/WebKit/public:blink", | 449 "//third_party/WebKit/public:blink", |
448 "//third_party/WebKit/public:mojo_bindings", | 450 "//third_party/WebKit/public:mojo_bindings", |
449 "//third_party/boringssl", | 451 "//third_party/boringssl", |
450 "//third_party/icu", | 452 "//third_party/icu", |
451 "//third_party/libjingle", | 453 "//third_party/libjingle", |
452 "//third_party/libyuv", | 454 "//third_party/libyuv", |
453 "//third_party/widevine/cdm:version_h", | 455 "//third_party/widevine/cdm:headers", |
454 "//ui/accessibility", | 456 "//ui/accessibility", |
455 "//ui/base", | 457 "//ui/base", |
456 "//ui/base/ime", | 458 "//ui/base/ime", |
457 "//ui/display", | 459 "//ui/display", |
458 "//ui/events:dom_keycode_converter", | 460 "//ui/events:dom_keycode_converter", |
459 "//ui/events:events_base", | 461 "//ui/events:events_base", |
460 "//ui/events/blink", | 462 "//ui/events/blink", |
461 "//ui/gfx/geometry/mojo", | 463 "//ui/gfx/geometry/mojo", |
462 "//ui/gl", | 464 "//ui/gl", |
463 "//ui/native_theme", | 465 "//ui/native_theme", |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
902 # For the defines in mojo_media_config. | 904 # For the defines in mojo_media_config. |
903 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 905 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
904 } | 906 } |
905 | 907 |
906 if (!is_component_build) { | 908 if (!is_component_build) { |
907 public_deps = [ | 909 public_deps = [ |
908 ":renderer", | 910 ":renderer", |
909 ] | 911 ] |
910 } | 912 } |
911 } | 913 } |
OLD | NEW |