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

Side by Side Diff: components/metrics/BUILD.gn

Issue 870913003: Fix Widows GN build of components/metrics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # GYP version: components/metrics.gypi:metrics 5 # GYP version: components/metrics.gypi:metrics
6 source_set("metrics") { 6 source_set("metrics") {
7 sources = [ 7 sources = [
8 "clean_exit_beacon.cc", 8 "clean_exit_beacon.cc",
9 "clean_exit_beacon.h", 9 "clean_exit_beacon.h",
10 "client_info.cc", 10 "client_info.cc",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 "//base", 57 "//base",
58 "//base:i18n", 58 "//base:i18n",
59 "//base:prefs", 59 "//base:prefs",
60 "//components/variations", 60 "//components/variations",
61 "//third_party/zlib", 61 "//third_party/zlib",
62 ] 62 ]
63 63
64 if (is_chromeos) { 64 if (is_chromeos) {
65 deps += [ ":serialization" ] 65 deps += [ ":serialization" ]
66 } 66 }
67
68 if (is_win) {
69 sources -= [ "machine_id_provider_stub.cc" ]
Slava Chigrin 2015/01/23 21:05:41 Same as in GYP https://code.google.com/p/chromium
70 }
67 } 71 }
68 72
69 # GYP version: components/metrics.gypi:metrics_gpu 73 # GYP version: components/metrics.gypi:metrics_gpu
70 source_set("gpu") { 74 source_set("gpu") {
71 sources = [ 75 sources = [
72 "gpu/gpu_metrics_provider.cc", 76 "gpu/gpu_metrics_provider.cc",
73 "gpu/gpu_metrics_provider.h", 77 "gpu/gpu_metrics_provider.h",
74 ] 78 ]
75 79
76 public_deps = [ 80 public_deps = [
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 ":profiler", 185 ":profiler",
182 ":test_support", 186 ":test_support",
183 "//base:prefs_test_support", 187 "//base:prefs_test_support",
184 "//base/test:test_support", 188 "//base/test:test_support",
185 "//components/variations", 189 "//components/variations",
186 "//content/public/common", 190 "//content/public/common",
187 "//testing/gtest", 191 "//testing/gtest",
188 ] 192 ]
189 } 193 }
190 # TODO(GYP): metrics_chromeos 194 # TODO(GYP): metrics_chromeos
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698