| 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 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 'i18n/time_formatting.cc', | 59 'i18n/time_formatting.cc', |
| 60 'i18n/time_formatting.h', | 60 'i18n/time_formatting.h', |
| 61 ], | 61 ], |
| 62 }, | 62 }, |
| 63 { | 63 { |
| 64 # This is the subset of files from base that should not be used with a | 64 # This is the subset of files from base that should not be used with a |
| 65 # dynamic library. Note that this library cannot depend on base because | 65 # dynamic library. Note that this library cannot depend on base because |
| 66 # base depends on base_static. | 66 # base depends on base_static. |
| 67 'target_name': 'base_static', | 67 'target_name': 'base_static', |
| 68 'type': 'static_library', | 68 'type': 'static_library', |
| 69 'toolsets': ['host', 'target'], |
| 69 'sources': [ | 70 'sources': [ |
| 70 'base_switches.cc', | 71 'base_switches.cc', |
| 71 'base_switches.h', | 72 'base_switches.h', |
| 72 'win/pe_image.cc', | 73 'win/pe_image.cc', |
| 73 'win/pe_image.h', | 74 'win/pe_image.h', |
| 74 ], | 75 ], |
| 75 'include_dirs': [ | 76 'include_dirs': [ |
| 76 '..', | 77 '..', |
| 77 ], | 78 ], |
| 78 }, | 79 }, |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 'msvs_settings': { | 410 'msvs_settings': { |
| 410 'VCLinkerTool': { | 411 'VCLinkerTool': { |
| 411 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 412 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 412 }, | 413 }, |
| 413 }, | 414 }, |
| 414 }, | 415 }, |
| 415 ], | 416 ], |
| 416 }], | 417 }], |
| 417 ], | 418 ], |
| 418 } | 419 } |
| OLD | NEW |