| 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 # 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 "leak_detector/leak_detector_impl.h", | 144 "leak_detector/leak_detector_impl.h", |
| 145 "leak_detector/leak_detector_value_type.cc", | 145 "leak_detector/leak_detector_value_type.cc", |
| 146 "leak_detector/leak_detector_value_type.h", | 146 "leak_detector/leak_detector_value_type.h", |
| 147 "leak_detector/ranked_set.cc", | 147 "leak_detector/ranked_set.cc", |
| 148 "leak_detector/ranked_set.h", | 148 "leak_detector/ranked_set.h", |
| 149 ] | 149 ] |
| 150 | 150 |
| 151 deps = [ | 151 deps = [ |
| 152 "//base", | 152 "//base", |
| 153 "//components/metrics/proto:proto", | 153 "//components/metrics/proto:proto", |
| 154 "//content/public/browser", | |
| 155 ] | 154 ] |
| 156 } | 155 } |
| 157 } | 156 } |
| 158 | 157 |
| 159 # GYP version: components/metrics.gypi:metrics_net | 158 # GYP version: components/metrics.gypi:metrics_net |
| 160 static_library("net") { | 159 static_library("net") { |
| 161 sources = [ | 160 sources = [ |
| 162 "net/cellular_logic_helper.cc", | 161 "net/cellular_logic_helper.cc", |
| 163 "net/cellular_logic_helper.h", | 162 "net/cellular_logic_helper.h", |
| 164 "net/net_metrics_log_uploader.cc", | 163 "net/net_metrics_log_uploader.cc", |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 | 365 |
| 367 if (is_linux) { | 366 if (is_linux) { |
| 368 sources += [ "serialization/serialization_utils_unittest.cc" ] | 367 sources += [ "serialization/serialization_utils_unittest.cc" ] |
| 369 deps += [ ":serialization" ] | 368 deps += [ ":serialization" ] |
| 370 } | 369 } |
| 371 | 370 |
| 372 if (is_chromeos) { | 371 if (is_chromeos) { |
| 373 deps += [ ":leak_detector_unit_tests" ] | 372 deps += [ ":leak_detector_unit_tests" ] |
| 374 } | 373 } |
| 375 } | 374 } |
| OLD | NEW |