| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "//content", | 103 "//content", |
| 104 "//content/public/browser", | 104 "//content/public/browser", |
| 105 "//content/public/common", | 105 "//content/public/common", |
| 106 "//content/public/utility", | 106 "//content/public/utility", |
| 107 "//gpu", | 107 "//gpu", |
| 108 "//ipc", | 108 "//ipc", |
| 109 "//media", | 109 "//media", |
| 110 "//net", | 110 "//net", |
| 111 "//ui/base", | 111 "//ui/base", |
| 112 "//ui/compositor", | 112 "//ui/compositor", |
| 113 "//ui/display", |
| 113 "//ui/gl", | 114 "//ui/gl", |
| 114 ] | 115 ] |
| 115 | 116 |
| 116 if (is_linux) { | 117 if (is_linux) { |
| 117 sources += [ | 118 sources += [ |
| 118 "cast_memory_pressure_monitor.cc", | 119 "cast_memory_pressure_monitor.cc", |
| 119 "cast_memory_pressure_monitor.h", | 120 "cast_memory_pressure_monitor.h", |
| 120 "metrics/external_metrics.cc", | 121 "metrics/external_metrics.cc", |
| 121 "metrics/external_metrics.h", | 122 "metrics/external_metrics.h", |
| 122 ] | 123 ] |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 "android/apk/src/org/chromium/chromecast/shell/CastCrashHandler.java", | 212 "android/apk/src/org/chromium/chromecast/shell/CastCrashHandler.java", |
| 212 "android/apk/src/org/chromium/chromecast/shell/CastMetricsHelper.java", | 213 "android/apk/src/org/chromium/chromecast/shell/CastMetricsHelper.java", |
| 213 "android/apk/src/org/chromium/chromecast/shell/CastSysInfoAndroid.java", | 214 "android/apk/src/org/chromium/chromecast/shell/CastSysInfoAndroid.java", |
| 214 "android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java", | 215 "android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java", |
| 215 "android/apk/src/org/chromium/chromecast/shell/CastWindowManager.java", | 216 "android/apk/src/org/chromium/chromecast/shell/CastWindowManager.java", |
| 216 ] | 217 ] |
| 217 | 218 |
| 218 jni_package = "chromecast" | 219 jni_package = "chromecast" |
| 219 } | 220 } |
| 220 } | 221 } |
| OLD | NEW |