| 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/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 |
| 23 # internal content ones) should depend on the public one. | 23 # internal content ones) should depend on the public one. |
| 24 visibility = [ | 24 visibility = [ |
| 25 ":for_content_tests", | 25 ":for_content_tests", |
| 26 "//content/app:*", |
| 26 "//content/public/renderer:renderer_sources", | 27 "//content/public/renderer:renderer_sources", |
| 27 ] | 28 ] |
| 28 | 29 |
| 29 sources = [ | 30 sources = [ |
| 30 "accessibility/blink_ax_enum_conversion.cc", | 31 "accessibility/blink_ax_enum_conversion.cc", |
| 31 "accessibility/blink_ax_enum_conversion.h", | 32 "accessibility/blink_ax_enum_conversion.h", |
| 32 "accessibility/blink_ax_tree_source.cc", | 33 "accessibility/blink_ax_tree_source.cc", |
| 33 "accessibility/blink_ax_tree_source.h", | 34 "accessibility/blink_ax_tree_source.h", |
| 34 "accessibility/render_accessibility_impl.cc", | 35 "accessibility/render_accessibility_impl.cc", |
| 35 "accessibility/render_accessibility_impl.h", | 36 "accessibility/render_accessibility_impl.h", |
| (...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 # For the defines in mojo_media_config. | 941 # For the defines in mojo_media_config. |
| 941 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 942 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 942 } | 943 } |
| 943 | 944 |
| 944 if (!is_component_build) { | 945 if (!is_component_build) { |
| 945 public_deps = [ | 946 public_deps = [ |
| 946 ":renderer", | 947 ":renderer", |
| 947 ] | 948 ] |
| 948 } | 949 } |
| 949 } | 950 } |
| OLD | NEW |