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

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

Issue 1464873002: Run gn --format over all .gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
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") 6 import("//media/media_options.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 source_set("browser") { 9 source_set("browser") {
10 sources = [ 10 sources = [
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 if (chromecast_branding == "public") { 55 if (chromecast_branding == "public") {
56 sources += [ 56 sources += [
57 "cast_content_browser_client_simple.cc", 57 "cast_content_browser_client_simple.cc",
58 "cast_network_delegate_simple.cc", 58 "cast_network_delegate_simple.cc",
59 "pref_service_helper_simple.cc", 59 "pref_service_helper_simple.cc",
60 ] 60 ]
61 } 61 }
62 62
63 deps = [ 63 deps = [
64 "//base", 64 "//base",
65 "//base:i18n",
65 "//base:prefs", 66 "//base:prefs",
66 "//base:i18n",
67 "//cc", 67 "//cc",
68 "//chromecast/app:chromecast_settings", 68 "//chromecast/app:chromecast_settings",
69 "//chromecast/app:resources", 69 "//chromecast/app:resources",
70 "//chromecast/base", 70 "//chromecast/base",
71 "//chromecast/base:cast_sys_info", 71 "//chromecast/base:cast_sys_info",
72 "//chromecast/base:cast_version", 72 "//chromecast/base:cast_version",
73 "//chromecast/common", 73 "//chromecast/common",
74 "//chromecast/graphics", 74 "//chromecast/graphics",
75 "//chromecast/media", 75 "//chromecast/media",
76 "//chromecast/net", 76 "//chromecast/net",
77 "//chromecast/service", 77 "//chromecast/service",
78 "//components/crash/content/app", 78 "//components/crash/content/app",
79 "//components/crash/content/browser", 79 "//components/crash/content/browser",
80 "//components/devtools_http_handler:devtools_http_handler", 80 "//components/devtools_http_handler:devtools_http_handler",
81 "//components/metrics", 81 "//components/metrics",
82 "//components/metrics:gpu", 82 "//components/metrics:gpu",
83 "//components/metrics:net", 83 "//components/metrics:net",
84 "//components/metrics:profiler", 84 "//components/metrics:profiler",
85 85
86 # TODO(gfhuang): Eliminate this dependency if ScreenInfoMetricsProvider 86 # TODO(gfhuang): Eliminate this dependency if ScreenInfoMetricsProvider
87 # isn't needed. crbug.com/541577 87 # isn't needed. crbug.com/541577
88 "//components/metrics:ui", 88 "//components/metrics:ui",
89 "//components/network_hints/browser", 89 "//components/network_hints/browser",
90 "//content", 90 "//content",
91 "//content/public/browser", 91 "//content/public/browser",
92 "//content/public/common", 92 "//content/public/common",
93 "//content/public/utility", 93 "//content/public/utility",
94 "//gpu", 94 "//gpu",
95 "//ipc",
95 "//media", 96 "//media",
96 "//ipc",
97 "//net", 97 "//net",
98 "//ui/aura", 98 "//ui/aura",
99 "//ui/base", 99 "//ui/base",
100 "//ui/compositor", 100 "//ui/compositor",
101 "//ui/gl", 101 "//ui/gl",
102 ] 102 ]
103 103
104 if (!is_android) { 104 if (!is_android) {
105 sources += [ 105 sources += [
106 "metrics/external_metrics.cc", 106 "metrics/external_metrics.cc",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 "//media/base:test_support", 169 "//media/base:test_support",
170 "//testing/gtest", 170 "//testing/gtest",
171 "//url", 171 "//url",
172 ] 172 ]
173 173
174 # TODO(slan): Find a better way to do this. 174 # TODO(slan): Find a better way to do this.
175 if (chromecast_branding != "public") { 175 if (chromecast_branding != "public") {
176 deps += [ "//chromecast/internal:cast_shell_internal" ] 176 deps += [ "//chromecast/internal:cast_shell_internal" ]
177 } 177 }
178 } 178 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698