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

Unified Diff: build/config/win/visual_studio_version.gni

Issue 1422333008: Remove Windows-related GN build configuration (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Review feedback addressed Created 5 years, 1 month 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 | « build/config/win/BUILD.gn ('k') | build/sanitizers/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/win/visual_studio_version.gni
diff --git a/build/config/win/visual_studio_version.gni b/build/config/win/visual_studio_version.gni
deleted file mode 100644
index 6a2828c355319ec24bcf87aafe70499f599f07df..0000000000000000000000000000000000000000
--- a/build/config/win/visual_studio_version.gni
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2014 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.
-
-declare_args() {
- # Path to Visual Studio. If empty, the default is used which is to use the
- # automatic toolchain in depot_tools. If set, you must also set the
- # visual_studio_version and wdk_path.
- visual_studio_path = ""
-
- # Version of Visual Studio pointed to by the visual_studio_path.
- # Use "2013" for Visual Studio 2013, or "2013e" for the Express version.
- visual_studio_version = ""
-
- # Directory of the Windows driver kit. If visual_studio_path is empty, this
- # will be auto-filled.
- wdk_path = ""
-
- # Full path to the Windows SDK, not including a backslash at the end.
- # This value is the default location, override if you have a different
- # installation location.
- windows_sdk_path = "C:\Program Files (x86)\Windows Kits\8.1"
-}
-
-if (visual_studio_path == "") {
- toolchain_data =
- exec_script("../../vs_toolchain.py", [ "get_toolchain_dir" ], "scope")
- visual_studio_path = toolchain_data.vs_path
- windows_sdk_path = toolchain_data.sdk_path
- visual_studio_version = toolchain_data.vs_version
- wdk_path = toolchain_data.wdk_dir
- visual_studio_runtime_dirs = toolchain_data.runtime_dirs
-} else {
- assert(visual_studio_version != "",
- "You must set the visual_studio_version if you set the path")
- assert(wdk_path != "",
- "You must set the wdk_path if you set the visual studio path")
- visual_studio_runtime_dirs = []
-}
« no previous file with comments | « build/config/win/BUILD.gn ('k') | build/sanitizers/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698