OLD | NEW |
| 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 |
1 { | 5 { |
2 'variables': { | 6 'variables': { |
3 'version_py': '../../chrome/tools/build/version.py', | 7 'version_py': '../../chrome/tools/build/version.py', |
4 'version_path': '../../chrome/VERSION', | 8 'version_path': '../../chrome/VERSION', |
5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', | 9 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', |
6 # 'branding_dir' is set in the 'conditions' section at the bottom. | 10 # 'branding_dir' is set in the 'conditions' section at the bottom. |
7 'msvs_use_common_release': 0, | 11 'msvs_use_common_release': 0, |
8 'msvs_use_common_linker_extras': 0, | 12 'msvs_use_common_linker_extras': 0, |
9 }, | 13 }, |
10 'conditions': [ | 14 'conditions': [ |
11 ['OS=="win"', { | 15 ['OS=="win"', { |
12 'targets': [ | 16 'targets': [ |
13 { | 17 { |
14 'target_name': 'alternate_version_generator_lib', | 18 'target_name': 'alternate_version_generator_lib', |
15 'msvs_guid': '66723D46-A641-4182-A321-923FD6335D9B', | 19 'msvs_guid': '66723D46-A641-4182-A321-923FD6335D9B', |
16 'type': 'static_library', | 20 'type': 'static_library', |
17 'dependencies': [ | 21 'dependencies': [ |
18 '../chrome.gyp:common_constants', | 22 '../chrome.gyp:common_constants', |
19 '../chrome.gyp:installer_util', | 23 '../chrome.gyp:installer_util', |
| 24 '../../base/base.gyp:base', |
20 ], | 25 ], |
21 'include_dirs': [ | 26 'include_dirs': [ |
22 '../..', | 27 '../..', |
23 ], | 28 ], |
24 'sources': [ | 29 'sources': [ |
25 'test/alternate_version_generator.cc', | 30 'test/alternate_version_generator.cc', |
26 'test/alternate_version_generator.h', | 31 'test/alternate_version_generator.h', |
27 'test/pe_image_resources.cc', | 32 'test/pe_image_resources.cc', |
28 'test/pe_image_resources.h', | 33 'test/pe_image_resources.h', |
29 'test/resource_loader.cc', | 34 'test/resource_loader.cc', |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 }, | 93 }, |
89 }], | 94 }], |
90 ], | 95 ], |
91 } | 96 } |
92 | 97 |
93 # Local Variables: | 98 # Local Variables: |
94 # tab-width:2 | 99 # tab-width:2 |
95 # indent-tabs-mode:nil | 100 # indent-tabs-mode:nil |
96 # End: | 101 # End: |
97 # vim: set expandtab tabstop=2 shiftwidth=2: | 102 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |