OLD | NEW |
| (Empty) |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 { | |
5 'variables': { | |
6 'msvs_use_common_release': 0, | |
7 'msvs_use_common_linker_extras': 0, | |
8 }, | |
9 'includes': [ | |
10 '../../build/win_precompile.gypi', | |
11 ], | |
12 'conditions': [ | |
13 # This target won't build in fastbuild, since there are no PDBs. | |
14 ['OS=="win" and fastbuild==0', { | |
15 'conditions': [ | |
16 ['chrome_multiple_dll==0', { | |
17 'targets': [ | |
18 { | |
19 'target_name': 'mini_installer_syzygy', | |
20 'product_name': 'mini_installer', | |
21 'variables': { | |
22 'chrome_dll_project': [ | |
23 '../chrome_syzygy.gyp:chrome_dll_syzygy', | |
24 ], | |
25 'chrome_dll_path': [ | |
26 '<(PRODUCT_DIR)/syzygy/chrome.dll', | |
27 ], | |
28 'output_dir': '<(PRODUCT_DIR)/syzygy', | |
29 }, | |
30 # Bulk of the build configuration comes from here. | |
31 'includes': [ 'mini_installer.gypi', ], | |
32 }, | |
33 ], | |
34 }, { | |
35 'targets': [ | |
36 { | |
37 'target_name': 'mini_installer_syzygy', | |
38 'type': 'executable', | |
39 'product_name': 'mini_installer', | |
40 | |
41 'variables': { | |
42 'chrome_dll_project': [ | |
43 '../chrome_syzygy.gyp:chrome_dll_syzygy', | |
44 '../chrome_syzygy.gyp:chrome_child_dll_syzygy', | |
45 ], | |
46 'chrome_dll_path': [ | |
47 '<(PRODUCT_DIR)/syzygy/chrome.dll', | |
48 '<(PRODUCT_DIR)/syzygy/chrome_child.dll', | |
49 ], | |
50 'output_dir': '<(PRODUCT_DIR)/syzygy', | |
51 }, | |
52 # Bulk of the build configuration comes from here. | |
53 'includes': [ 'mini_installer.gypi', ], | |
54 }, | |
55 ], | |
56 }], | |
57 ], | |
58 },{ | |
59 'targets': [], | |
60 }], | |
61 ], | |
62 } | |
OLD | NEW |