| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 import("//ppapi/features/features.gni") | 10 import("//ppapi/features/features.gni") |
| 11 import("//printing/features/features.gni") | 11 import("//printing/features/features.gni") |
| 12 import("//third_party/webrtc/build/webrtc.gni") | 12 import("//third_party/webrtc/webrtc.gni") |
| 13 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 13 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 14 | 14 |
| 15 if (is_component_build) { | 15 if (is_component_build) { |
| 16 link_target_type = "source_set" | 16 link_target_type = "source_set" |
| 17 } else { | 17 } else { |
| 18 link_target_type = "split_static_library" | 18 link_target_type = "split_static_library" |
| 19 } | 19 } |
| 20 | 20 |
| 21 target(link_target_type, "renderer") { | 21 target(link_target_type, "renderer") { |
| 22 # Only the public target should depend on this. All other targets (even | 22 # Only the public target should depend on this. All other targets (even |
| (...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 933 # For the defines in mojo_media_config. | 933 # For the defines in mojo_media_config. |
| 934 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 934 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 935 } | 935 } |
| 936 | 936 |
| 937 if (!is_component_build) { | 937 if (!is_component_build) { |
| 938 public_deps = [ | 938 public_deps = [ |
| 939 ":renderer", | 939 ":renderer", |
| 940 ] | 940 ] |
| 941 } | 941 } |
| 942 } | 942 } |
| OLD | NEW |