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

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

Issue 2149483002: Reduce chrome.exe .text size by 50 KB with static_library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweaking comments Created 4 years, 5 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,
11 # so this logic is not replicated in the gyp file. 11 # so this logic is not replicated in the gyp file.
12 if (metrics_use_blimp) { 12 if (metrics_use_blimp) {
13 defines = [ "OVERRIDE_OS_NAME_TO_BLIMP" ] 13 defines = [ "OVERRIDE_OS_NAME_TO_BLIMP" ]
14 } 14 }
15 15
16 # GYP version: components/metrics.gypi:metrics 16 # GYP version: components/metrics.gypi:metrics
17 source_set("metrics") { 17 static_library("metrics") {
18 sources = [ 18 sources = [
19 "call_stack_profile_metrics_provider.cc", 19 "call_stack_profile_metrics_provider.cc",
20 "call_stack_profile_metrics_provider.h", 20 "call_stack_profile_metrics_provider.h",
21 "clean_exit_beacon.cc", 21 "clean_exit_beacon.cc",
22 "clean_exit_beacon.h", 22 "clean_exit_beacon.h",
23 "client_info.cc", 23 "client_info.cc",
24 "client_info.h", 24 "client_info.h",
25 "cloned_install_detector.cc", 25 "cloned_install_detector.cc",
26 "cloned_install_detector.h", 26 "cloned_install_detector.h",
27 "daily_event.cc", 27 "daily_event.cc",
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 367
368 if (is_linux) { 368 if (is_linux) {
369 sources += [ "serialization/serialization_utils_unittest.cc" ] 369 sources += [ "serialization/serialization_utils_unittest.cc" ]
370 deps += [ ":serialization" ] 370 deps += [ ":serialization" ]
371 } 371 }
372 372
373 if (is_chromeos) { 373 if (is_chromeos) {
374 deps += [ ":leak_detector_unit_tests" ] 374 deps += [ ":leak_detector_unit_tests" ]
375 } 375 }
376 } 376 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698