| OLD | NEW |
| 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 declare_args() { | 5 declare_args() { |
| 6 # Overrides os name in uma metrics log to "Blimp". | 6 # Overrides os name in uma metrics log to "Blimp". |
| 7 metrics_use_blimp = false | 7 metrics_use_blimp = false |
| 8 } | 8 } |
| 9 | 9 |
| 10 # GYP version: components/metrics.gypi:metrics | 10 # GYP version: components/metrics.gypi:metrics |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 sources = [ | 209 sources = [ |
| 210 "ui/screen_info_metrics_provider.cc", | 210 "ui/screen_info_metrics_provider.cc", |
| 211 "ui/screen_info_metrics_provider.h", | 211 "ui/screen_info_metrics_provider.h", |
| 212 ] | 212 ] |
| 213 | 213 |
| 214 public_deps = [ | 214 public_deps = [ |
| 215 ":metrics", | 215 ":metrics", |
| 216 ] | 216 ] |
| 217 deps = [ | 217 deps = [ |
| 218 "//base", | 218 "//base", |
| 219 "//ui/display", |
| 219 "//ui/gfx", | 220 "//ui/gfx", |
| 220 "//ui/gfx/geometry", | 221 "//ui/gfx/geometry", |
| 221 ] | 222 ] |
| 222 } | 223 } |
| 223 | 224 |
| 224 if (!is_ios) { | 225 if (!is_ios) { |
| 225 # GYP version: components/metrics.gypi:metrics_profiler_content | 226 # GYP version: components/metrics.gypi:metrics_profiler_content |
| 226 source_set("profiler_content") { | 227 source_set("profiler_content") { |
| 227 sources = [ | 228 sources = [ |
| 228 "profiler/content/content_tracking_synchronizer_delegate.cc", | 229 "profiler/content/content_tracking_synchronizer_delegate.cc", |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 # These are only used by the blimp team, which has entirely migrated to gn, | 362 # These are only used by the blimp team, which has entirely migrated to gn, |
| 362 # so this logic is not replicated in the gyp file. | 363 # so this logic is not replicated in the gyp file. |
| 363 if (metrics_use_blimp) { | 364 if (metrics_use_blimp) { |
| 364 defines = [ | 365 defines = [ |
| 365 "OVERRIDE_OS_NAME_TO_BLIMP", | 366 "OVERRIDE_OS_NAME_TO_BLIMP", |
| 366 "ENABLE_REPORTING_BLIMP", | 367 "ENABLE_REPORTING_BLIMP", |
| 367 ] | 368 ] |
| 368 } | 369 } |
| 369 } | 370 } |
| 370 # TODO(GYP): metrics_chromeos | 371 # TODO(GYP): metrics_chromeos |
| OLD | NEW |