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

Unified Diff: chrome/tools/disable_outdated_build_detector/BUILD.gn

Issue 2328493002: Remove the tool to disable the outdated build detector for organic installs of Chrome. (Closed)
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/tools/build/win/FILES.cfg ('k') | chrome/tools/disable_outdated_build_detector/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/disable_outdated_build_detector/BUILD.gn
diff --git a/chrome/tools/disable_outdated_build_detector/BUILD.gn b/chrome/tools/disable_outdated_build_detector/BUILD.gn
deleted file mode 100644
index 7a8eedb19d845b0cb95df5b992764057b96b97d8..0000000000000000000000000000000000000000
--- a/chrome/tools/disable_outdated_build_detector/BUILD.gn
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright (c) 2016 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import("//chrome/version.gni")
-import("//testing/test.gni")
-
-if (is_win) {
- config("xp") {
- # Target low-end CPUs on XP.
- cflags = [ "/arch:IA32" ]
- defines = [
- "NTDDI_VERSION=0x05010200",
- "WINVER=0x0501",
- "_WIN32_WINNT=0x0501",
- ]
- }
-
- executable("disable_outdated_build_detector") {
- sources = [
- "disable_outdated_build_detector_main.cc",
- ]
-
- configs -= [
- "//build/config/win:console",
- "//build/config/win:winver",
- ]
- configs += [
- "//build/config/win:windowed",
- ":xp",
- ]
-
- deps = [
- ":disable_outdated_build_detector_exe_version",
- ":lib",
- "//build/win:default_exe_manifest",
- ]
- }
-
- process_version("disable_outdated_build_detector_exe_version") {
- template_file = "disable_outdated_build_detector_exe_version.rc.version"
- output = "$target_gen_dir/disable_outdated_build_detector_exe_version.rc"
- }
-
- source_set("lib") {
- sources = [
- "constants.cc",
- "constants.h",
- "disable_outdated_build_detector.cc",
- "disable_outdated_build_detector.h",
- "google_update_integration.cc",
- "google_update_integration.h",
- ]
- configs -= [ "//build/config/win:winver" ]
- configs += [ ":xp" ]
- }
-
- test("disable_outdated_build_detector_unittests") {
- sources = [
- "disable_outdated_build_detector_unittest.cc",
- "google_update_integration_unittest.cc",
- "run_all_unittests.cc",
- ]
-
- deps = [
- ":lib",
- "//base",
- "//base/test:test_support",
- "//chrome/installer/util:with_no_strings",
- "//testing/gmock",
- "//testing/gtest",
- ]
- }
-}
« no previous file with comments | « chrome/tools/build/win/FILES.cfg ('k') | chrome/tools/disable_outdated_build_detector/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698