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

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

Issue 2705333006: Move client_native_pixmap_factory.h from ui/ozone/public to ui/gfx (Closed)
Patch Set: Rebase Created 3 years, 10 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/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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698