blob: d4994ac1813c8432e8564dc25f185331d4a39f21 [file] [log] [blame]
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001# 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 'conditions': [
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +01006 ['OS=="win" and fastbuild==0', {
7 'variables': {
8 'dll_name': 'chrome',
9 },
Torne (Richard Coles)58218062012-11-14 11:43:16 +000010 'targets': [
11 {
12 'target_name': 'chrome_dll_syzygy',
13 'type': 'none',
14 'sources' : [],
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010015 'includes': [
16 'chrome_syzygy.gypi',
Torne (Richard Coles)58218062012-11-14 11:43:16 +000017 ],
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010018 },
19 ],
20 }],
21 # Note, not else.
22 ['OS=="win" and fastbuild==0 and chrome_multiple_dll==1', {
23 'variables': {
24 'dll_name': 'chrome_child',
25 },
26 'targets': [
27 {
28 'target_name': 'chrome_child_dll_syzygy',
29 'type': 'none',
30 'sources' : [],
31 'includes': [
32 'chrome_syzygy.gypi',
Torne (Richard Coles)58218062012-11-14 11:43:16 +000033 ],
34 },
35 ],
36 }],
37 ],
38}