OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 }, | 7 }, |
8 'includes': [ | 8 'includes': [ |
9 '../../../../build/util/version.gypi', | 9 '../../../../build/util/version.gypi', |
10 '../../../../build/win_precompile.gypi', | 10 '../../../../build/win_precompile.gypi', |
(...skipping 21 matching lines...) Expand all Loading... | |
32 'caps.ver', | 32 'caps.ver', |
33 ], | 33 ], |
34 'includes': [ | 34 'includes': [ |
35 '../../../version_resource_rules.gypi', | 35 '../../../version_resource_rules.gypi', |
36 ], | 36 ], |
37 }, | 37 }, |
38 { | 38 { |
39 'target_name': 'caps', | 39 'target_name': 'caps', |
40 'type': 'executable', | 40 'type': 'executable', |
41 'include_dirs': [ | 41 'include_dirs': [ |
42 '../..', | 42 '..', |
cpu_(ooo_6.6-7.5)
2015/02/01 19:08:41
I think I cargo cult this.
| |
43 '<(DEPTH)/', | |
scottmg
2015/02/01 19:55:35
don't use DEPTH in gyp files. it's only meant for
cpu_(ooo_6.6-7.5)
2015/02/03 02:44:58
Done.
| |
43 ], | 44 ], |
44 'sources': [ | 45 'sources': [ |
45 'main_win.cc', | 46 'main_win.cc', |
47 'logger_win.cc', | |
48 'logger_win.h', | |
49 'process_singleton_win.cc', | |
50 'process_singleton_win.h', | |
46 '<(SHARED_INTERMEDIATE_DIR)/caps/caps_version.rc', | 51 '<(SHARED_INTERMEDIATE_DIR)/caps/caps_version.rc', |
47 ], | 52 ], |
48 'dependencies': [ | 53 'dependencies': [ |
49 'caps_resources', | 54 'caps_resources', |
55 '<(DEPTH)/base/base.gyp:base', | |
scottmg
2015/02/01 19:55:35
same here, just ../../../base/base.gyp:base is pre
cpu_(ooo_6.6-7.5)
2015/02/03 02:44:58
Done.
| |
56 '<(DEPTH)/chrome/chrome.gyp:common_version', | |
cpu_(ooo_6.6-7.5)
2015/02/01 19:08:41
that is how I force chrome/common/chrome_version_i
scottmg
2015/02/01 19:55:35
Acknowledged.
| |
50 ], | 57 ], |
51 'msvs_settings': { | 58 'msvs_settings': { |
52 'VCLinkerTool': { | 59 'VCLinkerTool': { |
53 # Set /SUBSYSTEM:WINDOWS. | 60 # Set /SUBSYSTEM:WINDOWS. |
54 'SubSystem': '2', | 61 'SubSystem': '2', |
55 }, | 62 }, |
56 }, | 63 }, |
57 }, | 64 }, |
58 ], | 65 ], |
59 } | 66 } |
OLD | NEW |