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

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

Issue 1649933002: [Chromecast] Hook up mojo media pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed gn check Created 4 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
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chromecast/browser/DEPS » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//chromecast/chromecast.gni") 5 import("//chromecast/chromecast.gni")
6 import("//media/media_options.gni")
7 import("//testing/test.gni") 6 import("//testing/test.gni")
8 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
9 8
10 if (is_android) { 9 if (is_android) {
11 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
12 } 11 }
13 12
14 source_set("browser") { 13 source_set("browser") {
15 sources = [ 14 sources = [
16 "android/cast_window_android.cc", 15 "android/cast_window_android.cc",
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 "//components/metrics:serialization", 124 "//components/metrics:serialization",
126 "//ui/aura", 125 "//ui/aura",
127 ] 126 ]
128 } else if (is_android) { 127 } else if (is_android) {
129 deps += [ 128 deps += [
130 ":jni_headers", 129 ":jni_headers",
131 "//components/external_video_surface", 130 "//components/external_video_surface",
132 ] 131 ]
133 } 132 }
134 133
135 if (enable_mojo_media != "none") {
136 configs += [ "//media/mojo/services:enable_mojo_media_config" ]
137 }
138
139 if (enable_mojo_media == "utility") {
140 deps += [ "//media/mojo/services:application" ]
141 }
142
143 if (use_ozone) { 134 if (use_ozone) {
144 deps += [ "//ui/ozone" ] 135 deps += [ "//ui/ozone" ]
145 } 136 }
146 } 137 }
147 138
148 source_set("test_support") { 139 source_set("test_support") {
149 testonly = true 140 testonly = true
150 141
151 sources = [ 142 sources = [
152 "test/chromecast_browser_test.cc", 143 "test/chromecast_browser_test.cc",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 "android/apk/src/org/chromium/chromecast/shell/CastCrashHandler.java", 201 "android/apk/src/org/chromium/chromecast/shell/CastCrashHandler.java",
211 "android/apk/src/org/chromium/chromecast/shell/CastMetricsHelper.java", 202 "android/apk/src/org/chromium/chromecast/shell/CastMetricsHelper.java",
212 "android/apk/src/org/chromium/chromecast/shell/CastSysInfoAndroid.java", 203 "android/apk/src/org/chromium/chromecast/shell/CastSysInfoAndroid.java",
213 "android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java", 204 "android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java",
214 "android/apk/src/org/chromium/chromecast/shell/CastWindowManager.java", 205 "android/apk/src/org/chromium/chromecast/shell/CastWindowManager.java",
215 ] 206 ]
216 207
217 jni_package = "chromecast" 208 jni_package = "chromecast"
218 } 209 }
219 } 210 }
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chromecast/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698