Fix import error in mac_platform_backend.py
[chromium-blink-merge.git] / build / config / win / visual_studio_version.gni
blob79b58418ba0d17ce535b5a437f57c1211b8799b5
1 # Copyright 2014 The Chromium Authors. All rights reserved.\r
2 # Use of this source code is governed by a BSD-style license that can be\r
3 # found in the LICENSE file.\r
4 \r
5 declare_args() {\r
6   # Version of Visual Studio to use.\r
7   #\r
8   # Possible values:\r
9   #  - "auto"\r
10   #  - "2010"\r
11   #  - "2010e"\r
12   #  - "2012"\r
13   #  - "2012e"\r
14   #  - "2013"\r
15   #  - "2013e"\r
16   #\r
17   # The "e" variants denote "Express". The default, "auto" will find the\r
18   # preferred one of all Visual Studios installed on the current system.\r
19   visual_studio_version = "auto"\r
21   # The path to use as the root of a Visual Studio install. If nonempty,\r
22   # this path will be used instead of any autodetected install locations,\r
23   # which allows you to have the Visual Studio files in a directory without\r
24   # actually "installing" it.\r
25   #\r
26   # When empty, we will autodetect the best Visual Studio path to use. The\r
27   # autodetected one is usually something like\r
28   # "C:\Program Files (x86)\Microsoft Visual Studio 10.0".\r
29   visual_studio_path = ""\r
30 }\r
32 if (visual_studio_path == "") {\r
33   visual_studio_path = exec_script("get_visual_studio_path.py",\r
34                                    [ visual_studio_version ], "value")\r
35 }\r