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

Side by Side Diff: chrome/installer/mini_installer_syzygy.gyp

Issue 2321703002: Remove all gyp[i] files in //chrome (Closed)
Patch Set: merge 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 unified diff | Download patch
« no previous file with comments | « chrome/installer/mini_installer.gypi ('k') | chrome/installer/mini_installer_version.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/installer/mini_installer.gypi ('k') | chrome/installer/mini_installer_version.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698