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

Side by Side Diff: chromecast/browser/metrics/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 source_set("metrics") { 5 source_set("metrics") {
6 sources = [ 6 sources = [
7 "cast_metrics_prefs.cc", 7 "cast_metrics_prefs.cc",
8 "cast_metrics_prefs.h", 8 "cast_metrics_prefs.h",
9 "cast_metrics_service_client.cc", 9 "cast_metrics_service_client.cc",
10 "cast_metrics_service_client.h", 10 "cast_metrics_service_client.h",
11 "cast_stability_metrics_provider.cc", 11 "cast_stability_metrics_provider.cc",
12 "cast_stability_metrics_provider.h", 12 "cast_stability_metrics_provider.h",
13 ] 13 ]
14 14
15 deps = [ 15 deps = [
16 "//base", 16 "//base",
17 "//base:i18n", 17 "//base:i18n",
18 "//base:prefs", 18 "//base:prefs",
19 "//chromecast/base", 19 "//chromecast/base",
20 "//chromecast/common", 20 "//chromecast/common",
21 "//components/metrics", 21 "//components/metrics",
22 "//components/metrics:gpu", 22 "//components/metrics:gpu",
23 "//components/metrics:net", 23 "//components/metrics:net",
24 "//components/metrics:profiler", 24 "//components/metrics:profiler",
25 "//content/public/browser",
25 "//content/public/common", 26 "//content/public/common",
26 "//content/public/browser",
27 ] 27 ]
28 28
29 if (is_linux) { 29 if (is_linux) {
30 sources += [ 30 sources += [
31 "external_metrics.cc", 31 "external_metrics.cc",
32 "external_metrics.h", 32 "external_metrics.h",
33 ] 33 ]
34 34
35 deps += [ "//components/metrics:serialization" ] 35 deps += [ "//components/metrics:serialization" ]
36 } 36 }
37 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698