| 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'], | |
| 64 'sources': [ | 63 'sources': [ |
| 65 'base_switches.cc', | 64 'base_switches.cc', |
| 66 'base_switches.h', | 65 'base_switches.h', |
| 67 'win/pe_image.cc', | 66 'win/pe_image.cc', |
| 68 'win/pe_image.h', | 67 'win/pe_image.h', |
| 69 ], | 68 ], |
| 70 'include_dirs': [ | 69 'include_dirs': [ |
| 71 '..', | 70 '..', |
| 72 ], | 71 ], |
| 73 }, | 72 }, |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 'msvs_settings': { | 392 'msvs_settings': { |
| 394 'VCLinkerTool': { | 393 'VCLinkerTool': { |
| 395 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 394 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 396 }, | 395 }, |
| 397 }, | 396 }, |
| 398 }, | 397 }, |
| 399 ], | 398 ], |
| 400 }], | 399 }], |
| 401 ], | 400 ], |
| 402 } | 401 } |
| OLD | NEW |