| 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") |
| (...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 # Defines in mojo_media_config are also pulled in here. | 917 # Defines in mojo_media_config are also pulled in here. |
| 918 "//media/mojo/clients", | 918 "//media/mojo/clients", |
| 919 ] | 919 ] |
| 920 } | 920 } |
| 921 | 921 |
| 922 if (is_linux || is_android) { | 922 if (is_linux || is_android) { |
| 923 deps += [ "//sandbox:sandbox_features" ] | 923 deps += [ "//sandbox:sandbox_features" ] |
| 924 } | 924 } |
| 925 | 925 |
| 926 if (use_ozone) { | 926 if (use_ozone) { |
| 927 deps += [ "//ui/ozone" ] | 927 deps += [ "//ui/ozone:platform" ] |
| 928 } | 928 } |
| 929 | 929 |
| 930 if (enable_ipc_fuzzer) { | 930 if (enable_ipc_fuzzer) { |
| 931 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] | 931 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] |
| 932 } | 932 } |
| 933 | 933 |
| 934 if (is_chromecast) { | 934 if (is_chromecast) { |
| 935 defines += [ "MEDIA_EVENT_LOG_UTILITY=VLOG(1)" ] | 935 defines += [ "MEDIA_EVENT_LOG_UTILITY=VLOG(1)" ] |
| 936 } | 936 } |
| 937 } | 937 } |
| 938 | 938 |
| 939 # See comment at the top of //content/BUILD.gn for how this works. | 939 # See comment at the top of //content/BUILD.gn for how this works. |
| 940 group("for_content_tests") { | 940 group("for_content_tests") { |
| 941 visibility = [ "//content/test/*" ] | 941 visibility = [ "//content/test/*" ] |
| 942 | 942 |
| 943 if (enable_mojo_media) { | 943 if (enable_mojo_media) { |
| 944 # For the defines in mojo_media_config. | 944 # For the defines in mojo_media_config. |
| 945 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 945 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 946 } | 946 } |
| 947 | 947 |
| 948 if (!is_component_build) { | 948 if (!is_component_build) { |
| 949 public_deps = [ | 949 public_deps = [ |
| 950 ":renderer", | 950 ":renderer", |
| 951 ] | 951 ] |
| 952 } | 952 } |
| 953 } | 953 } |
| OLD | NEW |