OLD | NEW |
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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 "metrics/external_metrics.h", | 124 "metrics/external_metrics.h", |
125 ] | 125 ] |
126 | 126 |
127 deps += [ | 127 deps += [ |
128 "//build/linux:fontconfig", | 128 "//build/linux:fontconfig", |
129 "//chromecast/graphics", | 129 "//chromecast/graphics", |
130 "//components/metrics:serialization", | 130 "//components/metrics:serialization", |
131 "//ui/aura", | 131 "//ui/aura", |
132 ] | 132 ] |
133 } else if (is_android) { | 133 } else if (is_android) { |
134 deps += [ | 134 deps += [ ":jni_headers" ] |
135 ":jni_headers", | |
136 "//components/external_video_surface", | |
137 ] | |
138 } | 135 } |
139 | 136 |
140 if (use_ozone) { | 137 if (use_ozone) { |
141 deps += [ "//ui/ozone" ] | 138 deps += [ "//ui/ozone" ] |
142 } | 139 } |
143 } | 140 } |
144 | 141 |
145 source_set("test_support") { | 142 source_set("test_support") { |
146 testonly = true | 143 testonly = true |
147 | 144 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 "android/apk/src/org/chromium/chromecast/shell/CastCrashHandler.java", | 209 "android/apk/src/org/chromium/chromecast/shell/CastCrashHandler.java", |
213 "android/apk/src/org/chromium/chromecast/shell/CastMetricsHelper.java", | 210 "android/apk/src/org/chromium/chromecast/shell/CastMetricsHelper.java", |
214 "android/apk/src/org/chromium/chromecast/shell/CastSysInfoAndroid.java", | 211 "android/apk/src/org/chromium/chromecast/shell/CastSysInfoAndroid.java", |
215 "android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java", | 212 "android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java", |
216 "android/apk/src/org/chromium/chromecast/shell/CastWindowManager.java", | 213 "android/apk/src/org/chromium/chromecast/shell/CastWindowManager.java", |
217 ] | 214 ] |
218 | 215 |
219 jni_package = "chromecast" | 216 jni_package = "chromecast" |
220 } | 217 } |
221 } | 218 } |
OLD | NEW |