OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'base.gypi', | 10 'base.gypi', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 'i18n/time_formatting.cc', | 53 'i18n/time_formatting.cc', |
54 'i18n/time_formatting.h', | 54 'i18n/time_formatting.h', |
55 ], | 55 ], |
56 }, | 56 }, |
57 { | 57 { |
58 # This is the subset of files from base that should not be used with a | 58 # This is the subset of files from base that should not be used with a |
59 # dynamic library. Note that this library cannot depend on base because | 59 # dynamic library. Note that this library cannot depend on base because |
60 # base depends on base_static. | 60 # base depends on base_static. |
61 'target_name': 'base_static', | 61 'target_name': 'base_static', |
62 'type': 'static_library', | 62 'type': 'static_library', |
| 63 'toolsets': ['host', 'target'], |
63 'sources': [ | 64 'sources': [ |
64 'base_switches.cc', | 65 'base_switches.cc', |
65 'base_switches.h', | 66 'base_switches.h', |
66 'win/pe_image.cc', | 67 'win/pe_image.cc', |
67 'win/pe_image.h', | 68 'win/pe_image.h', |
68 ], | 69 ], |
69 'include_dirs': [ | 70 'include_dirs': [ |
70 '..', | 71 '..', |
71 ], | 72 ], |
72 }, | 73 }, |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 'msvs_settings': { | 390 'msvs_settings': { |
390 'VCLinkerTool': { | 391 'VCLinkerTool': { |
391 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 392 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
392 }, | 393 }, |
393 }, | 394 }, |
394 }, | 395 }, |
395 ], | 396 ], |
396 }], | 397 }], |
397 ], | 398 ], |
398 } | 399 } |
OLD | NEW |