OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 # Keep the archive builder happy. | 9 # Keep the archive builder happy. |
10 'chrome_personalization%': 1, | 10 'chrome_personalization%': 1, |
11 'use_syncapi_stub%': 0, | 11 'use_syncapi_stub%': 0, |
12 | 12 |
13 'variables': { | 13 'variables': { |
14 'version_py_path': '../tools/build/version.py', | 14 'version_py_path': '../tools/build/version.py', |
15 'version_path': 'VERSION', | 15 'version_path': 'VERSION', |
16 }, | 16 }, |
17 'version_py_path': '<(version_py_path) -f', | 17 'version_py_path': '<(version_py_path) -f', |
18 'version_path': '<(version_path)', | 18 'version_path': '<(version_path)', |
19 | 19 |
20 'conditions': [ | 20 'conditions': [ |
21 ['OS=="win"', { | 21 ['OS=="win"', { |
22 'python': [ | 22 'python': [ |
23 '<(DEPTH)\\third_party\\python_24\\setup_env.bat && python' | 23 '<(DEPTH)\\third_party\\python_26\\setup_env.bat && python' |
24 ], | 24 ], |
25 }, { # OS != win | 25 }, { # OS != win |
26 'python': [ | 26 'python': [ |
27 'python' | 27 'python' |
28 ], | 28 ], |
29 }], | 29 }], |
30 ], | 30 ], |
31 }, | 31 }, |
32 'includes': [ | 32 'includes': [ |
33 '../build/common.gypi', | 33 '../build/common.gypi', |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. | 162 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. |
163 'SubSystem': '2', | 163 'SubSystem': '2', |
164 'AdditionalDependencies': [ | 164 'AdditionalDependencies': [ |
165 'shlwapi.lib', | 165 'shlwapi.lib', |
166 ], | 166 ], |
167 }, | 167 }, |
168 }, | 168 }, |
169 }, | 169 }, |
170 ], | 170 ], |
171 } | 171 } |
OLD | NEW |