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

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

Issue 2882813002: media: Convert mojo media defines to buildflags (Closed)
Patch Set: rebase Created 3 years, 7 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
« no previous file with comments | « chromecast/browser/cast_content_browser_client.cc ('k') | content/browser/browser_main_loop.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "//gpu/command_buffer/client:gles2_implementation", 86 "//gpu/command_buffer/client:gles2_implementation",
87 "//gpu/command_buffer/client:gles2_interface", 87 "//gpu/command_buffer/client:gles2_interface",
88 "//gpu/ipc/host", 88 "//gpu/ipc/host",
89 "//gpu/vulkan:features", 89 "//gpu/vulkan:features",
90 "//media", 90 "//media",
91 "//media/capture", 91 "//media/capture",
92 "//media/capture/mojo:image_capture", 92 "//media/capture/mojo:image_capture",
93 "//media/gpu/ipc/client", 93 "//media/gpu/ipc/client",
94 "//media/midi", 94 "//media/midi",
95 "//media/midi:mojo", 95 "//media/midi:mojo",
96 "//media/mojo:features",
96 "//media/mojo/interfaces", 97 "//media/mojo/interfaces",
97 "//media/mojo/services", 98 "//media/mojo/services",
98 "//mojo/common", 99 "//mojo/common",
99 "//mojo/edk/system", 100 "//mojo/edk/system",
100 "//mojo/public/cpp/bindings", 101 "//mojo/public/cpp/bindings",
101 "//mojo/public/js", 102 "//mojo/public/js",
102 "//net", 103 "//net",
103 "//net:extras", 104 "//net:extras",
104 "//net:http_server", 105 "//net:http_server",
105 "//ppapi/features", 106 "//ppapi/features",
(...skipping 2001 matching lines...) Expand 10 before | Expand all | Expand 10 after
2107 } 2108 }
2108 2109
2109 if (is_linux && use_dbus) { 2110 if (is_linux && use_dbus) {
2110 deps += [ "//dbus" ] 2111 deps += [ "//dbus" ]
2111 } 2112 }
2112 2113
2113 if (is_linux) { 2114 if (is_linux) {
2114 deps += [ "//third_party/boringssl" ] 2115 deps += [ "//third_party/boringssl" ]
2115 } 2116 }
2116 2117
2117 if (enable_mojo_media) {
2118 configs += [ "//media/mojo/services:mojo_media_config" ]
2119 }
2120
2121 if (use_ozone) { 2118 if (use_ozone) {
2122 deps += [ "//ui/ozone" ] 2119 deps += [ "//ui/ozone" ]
2123 } 2120 }
2124 2121
2125 if (enable_ipc_fuzzer) { 2122 if (enable_ipc_fuzzer) {
2126 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] 2123 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
2127 } 2124 }
2128 2125
2129 if (use_minikin_hyphenation) { 2126 if (use_minikin_hyphenation) {
2130 sources += [ 2127 sources += [
2131 "hyphenation/hyphenation_impl.cc", 2128 "hyphenation/hyphenation_impl.cc",
2132 "hyphenation/hyphenation_impl.h", 2129 "hyphenation/hyphenation_impl.h",
2133 ] 2130 ]
2134 } 2131 }
2135 } 2132 }
2136 2133
2137 # See comment at the top of //content/BUILD.gn for how this works. 2134 # See comment at the top of //content/BUILD.gn for how this works.
2138 group("for_content_tests") { 2135 group("for_content_tests") {
2139 visibility = [ "//content/test/*" ] 2136 visibility = [ "//content/test/*" ]
2140 if (!is_component_build) { 2137 if (!is_component_build) {
2141 public_deps = [ 2138 public_deps = [
2142 ":browser", 2139 ":browser",
2143 ] 2140 ]
2144 } else { 2141 } else {
2145 public_deps = [ 2142 public_deps = [
2146 "//third_party/leveldatabase", 2143 "//third_party/leveldatabase",
2147 ] 2144 ]
2148 } 2145 }
2149 } 2146 }
OLDNEW
« no previous file with comments | « chromecast/browser/cast_content_browser_client.cc ('k') | content/browser/browser_main_loop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698