| 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("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 sources += [ | 57 sources += [ |
| 58 "cast_content_browser_client_simple.cc", | 58 "cast_content_browser_client_simple.cc", |
| 59 "cast_network_delegate_simple.cc", | 59 "cast_network_delegate_simple.cc", |
| 60 "pref_service_helper_simple.cc", | 60 "pref_service_helper_simple.cc", |
| 61 ] | 61 ] |
| 62 } | 62 } |
| 63 | 63 |
| 64 deps = [ | 64 deps = [ |
| 65 "//base", | 65 "//base", |
| 66 "//base:i18n", | 66 "//base:i18n", |
| 67 "//base:prefs", | |
| 68 "//cc", | 67 "//cc", |
| 69 "//chromecast/app:chromecast_settings", | 68 "//chromecast/app:chromecast_settings", |
| 70 "//chromecast/app:resources", | 69 "//chromecast/app:resources", |
| 71 "//chromecast/base", | 70 "//chromecast/base", |
| 72 "//chromecast/base:cast_sys_info", | 71 "//chromecast/base:cast_sys_info", |
| 73 "//chromecast/base:cast_version", | 72 "//chromecast/base:cast_version", |
| 74 "//chromecast/common", | 73 "//chromecast/common", |
| 75 "//chromecast/graphics", | 74 "//chromecast/graphics", |
| 76 "//chromecast/media", | 75 "//chromecast/media", |
| 77 "//chromecast/net", | 76 "//chromecast/net", |
| 78 "//chromecast/service", | 77 "//chromecast/service", |
| 79 "//components/crash/content/app", | 78 "//components/crash/content/app", |
| 80 "//components/crash/content/browser", | 79 "//components/crash/content/browser", |
| 81 "//components/devtools_http_handler:devtools_http_handler", | 80 "//components/devtools_http_handler:devtools_http_handler", |
| 82 "//components/metrics", | 81 "//components/metrics", |
| 83 "//components/metrics:gpu", | 82 "//components/metrics:gpu", |
| 84 "//components/metrics:net", | 83 "//components/metrics:net", |
| 85 "//components/metrics:profiler", | 84 "//components/metrics:profiler", |
| 86 | 85 |
| 87 # TODO(gfhuang): Eliminate this dependency if ScreenInfoMetricsProvider | 86 # TODO(gfhuang): Eliminate this dependency if ScreenInfoMetricsProvider |
| 88 # isn't needed. crbug.com/541577 | 87 # isn't needed. crbug.com/541577 |
| 89 "//components/metrics:ui", | 88 "//components/metrics:ui", |
| 90 "//components/network_hints/browser", | 89 "//components/network_hints/browser", |
| 90 "//components/prefs", |
| 91 "//content", | 91 "//content", |
| 92 "//content/public/browser", | 92 "//content/public/browser", |
| 93 "//content/public/common", | 93 "//content/public/common", |
| 94 "//content/public/utility", | 94 "//content/public/utility", |
| 95 "//gpu", | 95 "//gpu", |
| 96 "//ipc", | 96 "//ipc", |
| 97 "//media", | 97 "//media", |
| 98 "//net", | 98 "//net", |
| 99 "//ui/aura", | 99 "//ui/aura", |
| 100 "//ui/base", | 100 "//ui/base", |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 if (chromecast_branding != "public") { | 180 if (chromecast_branding != "public") { |
| 181 deps += [ "//chromecast/internal:cast_shell_internal" ] | 181 deps += [ "//chromecast/internal:cast_shell_internal" ] |
| 182 } | 182 } |
| 183 | 183 |
| 184 if (chromecast_branding == "public") { | 184 if (chromecast_branding == "public") { |
| 185 # Link default libcast_media_1.0 statically not to link dummy one | 185 # Link default libcast_media_1.0 statically not to link dummy one |
| 186 # dynamically for public unittests. | 186 # dynamically for public unittests. |
| 187 deps += [ "//chromecast/media/base:libcast_media_1.0_default_core" ] | 187 deps += [ "//chromecast/media/base:libcast_media_1.0_default_core" ] |
| 188 } | 188 } |
| 189 } | 189 } |
| OLD | NEW |