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

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

Issue 2605553002: Add EffectiveConnectionType enum to the system profile proto (Closed)
Patch Set: asvitkine comments Created 3 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
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 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 # These are only used by the blimp team, which has entirely migrated to gn, 10 # These are only used by the blimp team, which has entirely migrated to gn,
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 "drive_metrics_provider_unittest.cc", 312 "drive_metrics_provider_unittest.cc",
313 "file_metrics_provider_unittest.cc", 313 "file_metrics_provider_unittest.cc",
314 "histogram_encoder_unittest.cc", 314 "histogram_encoder_unittest.cc",
315 "machine_id_provider_win_unittest.cc", 315 "machine_id_provider_win_unittest.cc",
316 "metrics_log_manager_unittest.cc", 316 "metrics_log_manager_unittest.cc",
317 "metrics_log_unittest.cc", 317 "metrics_log_unittest.cc",
318 "metrics_reporting_scheduler_unittest.cc", 318 "metrics_reporting_scheduler_unittest.cc",
319 "metrics_service_unittest.cc", 319 "metrics_service_unittest.cc",
320 "metrics_state_manager_unittest.cc", 320 "metrics_state_manager_unittest.cc",
321 "net/net_metrics_log_uploader_unittest.cc", 321 "net/net_metrics_log_uploader_unittest.cc",
322 "net/network_metrics_provider_unittest.cc",
322 "persisted_logs_unittest.cc", 323 "persisted_logs_unittest.cc",
323 "profiler/profiler_metrics_provider_unittest.cc", 324 "profiler/profiler_metrics_provider_unittest.cc",
324 "profiler/tracking_synchronizer_unittest.cc", 325 "profiler/tracking_synchronizer_unittest.cc",
325 "stability_metrics_helper_unittest.cc", 326 "stability_metrics_helper_unittest.cc",
326 "ui/screen_info_metrics_provider_unittest.cc", 327 "ui/screen_info_metrics_provider_unittest.cc",
327 ] 328 ]
328 329
329 deps = [ 330 deps = [
330 ":call_stack_profile_params", 331 ":call_stack_profile_params",
331 ":child_call_stacks", 332 ":child_call_stacks",
(...skipping 13 matching lines...) Expand all
345 "//third_party/zlib:compression_utils", 346 "//third_party/zlib:compression_utils",
346 "//ui/gfx/geometry", 347 "//ui/gfx/geometry",
347 ] 348 ]
348 349
349 if (is_linux) { 350 if (is_linux) {
350 sources += [ "serialization/serialization_utils_unittest.cc" ] 351 sources += [ "serialization/serialization_utils_unittest.cc" ]
351 deps += [ ":serialization" ] 352 deps += [ ":serialization" ]
352 } 353 }
353 354
354 if (is_chromeos) { 355 if (is_chromeos) {
355 deps += [ "leak_detector:unit_tests" ] 356 deps += [
357 "leak_detector:unit_tests",
358 "//chromeos",
359 ]
356 } 360 }
357 361
358 # iOS is not supported by the profiler and the ios-simulator bot chokes on 362 # iOS is not supported by the profiler and the ios-simulator bot chokes on
359 # these tests. 363 # these tests.
360 if (is_ios) { 364 if (is_ios) {
361 sources -= [ "child_call_stack_profile_collector_unittest.cc" ] 365 sources -= [ "child_call_stack_profile_collector_unittest.cc" ]
362 deps -= [ "//components/metrics/public/cpp:call_stack_unit_tests" ] 366 deps -= [ "//components/metrics/public/cpp:call_stack_unit_tests" ]
363 } 367 }
364 } 368 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698