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

Side by Side Diff: chrome/installer/setup/BUILD.gn

Issue 1475643004: Add crash keys for the installer covering simple InstallerState fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move command-line switch refactor to another patch for easier review Created 5 years 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 if (is_win) { 7 if (is_win) {
8 executable("setup") { 8 executable("setup") {
9 sources = [ 9 sources = [
10 "setup.ico", 10 "setup.ico",
(...skipping 20 matching lines...) Expand all
31 source_set("lib") { 31 source_set("lib") {
32 sources = [ 32 sources = [
33 "app_launcher_installer.cc", 33 "app_launcher_installer.cc",
34 "app_launcher_installer.h", 34 "app_launcher_installer.h",
35 "archive_patch_helper.cc", 35 "archive_patch_helper.cc",
36 "archive_patch_helper.h", 36 "archive_patch_helper.h",
37 "install.cc", 37 "install.cc",
38 "install.h", 38 "install.h",
39 "install_worker.cc", 39 "install_worker.cc",
40 "install_worker.h", 40 "install_worker.h",
41 "installer_crash_keys.cc",
42 "installer_crash_keys.h",
41 "installer_crash_reporter_client.cc", 43 "installer_crash_reporter_client.cc",
42 "installer_crash_reporter_client.h", 44 "installer_crash_reporter_client.h",
43 "setup_constants.cc", 45 "setup_constants.cc",
44 "setup_constants.h", 46 "setup_constants.h",
45 "setup_util.cc", 47 "setup_util.cc",
46 "setup_util.h", 48 "setup_util.h",
47 "update_active_setup_version_work_item.cc", 49 "update_active_setup_version_work_item.cc",
48 "update_active_setup_version_work_item.h", 50 "update_active_setup_version_work_item.h",
49 ] 51 ]
50 52
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "//base/allocator", 85 "//base/allocator",
84 "//base/test:test_support", 86 "//base/test:test_support",
85 "//chrome/installer/mini_installer:unit_tests", 87 "//chrome/installer/mini_installer:unit_tests",
86 "//chrome/installer/util:strings", 88 "//chrome/installer/util:strings",
87 "//chrome/installer/util:util", 89 "//chrome/installer/util:util",
88 "//testing/gmock", 90 "//testing/gmock",
89 "//testing/gtest", 91 "//testing/gtest",
90 ] 92 ]
91 } 93 }
92 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698