| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//chromecast/chromecast.gni") | 6 import("//chromecast/chromecast.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 "cast_net_log.cc", | 36 "cast_net_log.cc", |
| 37 "cast_net_log.h", | 37 "cast_net_log.h", |
| 38 "cast_network_delegate.cc", | 38 "cast_network_delegate.cc", |
| 39 "cast_network_delegate.h", | 39 "cast_network_delegate.h", |
| 40 "cast_permission_manager.cc", | 40 "cast_permission_manager.cc", |
| 41 "cast_permission_manager.h", | 41 "cast_permission_manager.h", |
| 42 "cast_quota_permission_context.cc", | 42 "cast_quota_permission_context.cc", |
| 43 "cast_quota_permission_context.h", | 43 "cast_quota_permission_context.h", |
| 44 "cast_resource_dispatcher_host_delegate.cc", | 44 "cast_resource_dispatcher_host_delegate.cc", |
| 45 "cast_resource_dispatcher_host_delegate.h", | 45 "cast_resource_dispatcher_host_delegate.h", |
| 46 "cast_window_manager.cc", |
| 47 "cast_window_manager.h", |
| 46 "devtools/cast_devtools_delegate.cc", | 48 "devtools/cast_devtools_delegate.cc", |
| 47 "devtools/cast_devtools_delegate.h", | 49 "devtools/cast_devtools_delegate.h", |
| 48 "devtools/remote_debugging_server.cc", | 50 "devtools/remote_debugging_server.cc", |
| 49 "devtools/remote_debugging_server.h", | 51 "devtools/remote_debugging_server.h", |
| 50 "geolocation/cast_access_token_store.cc", | 52 "geolocation/cast_access_token_store.cc", |
| 51 "geolocation/cast_access_token_store.h", | 53 "geolocation/cast_access_token_store.h", |
| 52 "metrics/cast_metrics_prefs.cc", | 54 "metrics/cast_metrics_prefs.cc", |
| 53 "metrics/cast_metrics_prefs.h", | 55 "metrics/cast_metrics_prefs.h", |
| 54 "metrics/cast_metrics_service_client.cc", | 56 "metrics/cast_metrics_service_client.cc", |
| 55 "metrics/cast_metrics_service_client.h", | 57 "metrics/cast_metrics_service_client.h", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 "//ui/base", | 119 "//ui/base", |
| 118 "//ui/compositor", | 120 "//ui/compositor", |
| 119 "//ui/display", | 121 "//ui/display", |
| 120 "//ui/gl", | 122 "//ui/gl", |
| 121 ] | 123 ] |
| 122 | 124 |
| 123 if (is_linux) { | 125 if (is_linux) { |
| 124 sources += [ | 126 sources += [ |
| 125 "cast_memory_pressure_monitor.cc", | 127 "cast_memory_pressure_monitor.cc", |
| 126 "cast_memory_pressure_monitor.h", | 128 "cast_memory_pressure_monitor.h", |
| 129 "cast_window_manager_aura.cc", |
| 130 "cast_window_manager_aura.h", |
| 127 "metrics/external_metrics.cc", | 131 "metrics/external_metrics.cc", |
| 128 "metrics/external_metrics.h", | 132 "metrics/external_metrics.h", |
| 129 ] | 133 ] |
| 130 | 134 |
| 131 deps += [ | 135 deps += [ |
| 132 "//build/linux:fontconfig", | 136 "//build/linux:fontconfig", |
| 133 "//components/metrics:serialization", | 137 "//components/metrics:serialization", |
| 134 "//ui/aura", | 138 "//ui/aura", |
| 135 ] | 139 ] |
| 136 } else if (is_android) { | 140 } else if (is_android) { |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 "android/apk/src/org/chromium/chromecast/shell/CastCrashHandler.java", | 248 "android/apk/src/org/chromium/chromecast/shell/CastCrashHandler.java", |
| 245 "android/apk/src/org/chromium/chromecast/shell/CastMetricsHelper.java", | 249 "android/apk/src/org/chromium/chromecast/shell/CastMetricsHelper.java", |
| 246 "android/apk/src/org/chromium/chromecast/shell/CastSysInfoAndroid.java", | 250 "android/apk/src/org/chromium/chromecast/shell/CastSysInfoAndroid.java", |
| 247 "android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java", | 251 "android/apk/src/org/chromium/chromecast/shell/CastWindowAndroid.java", |
| 248 "android/apk/src/org/chromium/chromecast/shell/CastWindowManager.java", | 252 "android/apk/src/org/chromium/chromecast/shell/CastWindowManager.java", |
| 249 ] | 253 ] |
| 250 | 254 |
| 251 jni_package = "chromecast" | 255 jni_package = "chromecast" |
| 252 } | 256 } |
| 253 } | 257 } |
| OLD | NEW |