summaryrefslogtreecommitdiffstats
path: root/base/base_sln.scons
blob: 046945bb123a7c3c5ccbeb6bb568077bdea1af2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

__doc__ = """
Configuration for building base.sln.
"""

Import('env')

env = env.Clone()

env.Tool('MSVSNew')

env.ChromeMSVSFolder('base dependencies',
                     name='dependencies',
                     entries = [
                         '$ZLIB_DIR/zlib.vcproj',
                         '$ICU38_DIR/build/icu.vcproj',
                         '$ICU38_DIR/build/icudt.vcproj',
                         '$TESTING_DIR/gtest.vcproj',
                         '$LIBPNG_DIR/libpng.vcproj',
                         '$SKIA_DIR/skia.vcproj',
                     ],
                     guid='{F216062D-F9C4-4883-A52C-2BE9ECADEEA0}')


solution = env.ChromeMSVSSolution('base.sln',
                                  dest='$CHROME_SRC_DIR/base/base.sln',
                                  entries = [
                                      '$BASE_DIR/build/base.vcproj',
                                      '$BASE_DIR/build/base_unittests.vcproj',
                                      '$BASE_DIR/build/debug_message.vcproj',
                                      'base dependencies',
                                      '$ICU38_DIR/build/icu.vcproj',
                                      '$ICU38_DIR/build/icudt.vcproj',
                                      '$BASE_DIR/build/base_gfx.vcproj',
                                      '$SKIA_DIR/skia.vcproj',
                                      '$LIBPNG_DIR/libpng.vcproj',
                                      '$ZLIB_DIR/zlib.vcproj',
                                      '$TESTING_DIR/gtest.vcproj',
                                  ],
                                  variants = [
                                      'Debug|Win32',
                                      'Release|Win32',
                                  ])