| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 'i18n/time_formatting.h', | 55 'i18n/time_formatting.h', |
| 56 ], | 56 ], |
| 57 }, | 57 }, |
| 58 { | 58 { |
| 59 # This is the subset of files from base that should not be used with a | 59 # This is the subset of files from base that should not be used with a |
| 60 # dynamic library. Note that this library cannot depend on base because | 60 # dynamic library. Note that this library cannot depend on base because |
| 61 # base depends on base_static. | 61 # base depends on base_static. |
| 62 'target_name': 'base_static', | 62 'target_name': 'base_static', |
| 63 'type': 'static_library', | 63 'type': 'static_library', |
| 64 'sources': [ | 64 'sources': [ |
| 65 'base_switches.cc', | |
| 66 'base_switches.h', | |
| 67 'win/pe_image.cc', | 65 'win/pe_image.cc', |
| 68 'win/pe_image.h', | 66 'win/pe_image.h', |
| 69 ], | 67 ], |
| 70 'include_dirs': [ | 68 'include_dirs': [ |
| 71 '..', | 69 '..', |
| 72 ], | 70 ], |
| 73 }, | 71 }, |
| 74 { | 72 { |
| 75 # TODO(rvargas): Remove this when gyp finally supports a clean model. | 73 # TODO(rvargas): Remove this when gyp finally supports a clean model. |
| 76 # See bug 36232. | 74 # See bug 36232. |
| 77 'target_name': 'base_static_win64', | 75 'target_name': 'base_static_win64', |
| 78 'type': 'static_library', | 76 'type': 'static_library', |
| 79 'sources': [ | 77 'sources': [ |
| 80 'base_switches.cc', | |
| 81 'base_switches.h', | |
| 82 'win/pe_image.cc', | 78 'win/pe_image.cc', |
| 83 'win/pe_image.h', | 79 'win/pe_image.h', |
| 84 ], | 80 ], |
| 85 'include_dirs': [ | 81 'include_dirs': [ |
| 86 '..', | 82 '..', |
| 87 ], | 83 ], |
| 88 'configurations': { | 84 'configurations': { |
| 89 'Common_Base': { | 85 'Common_Base': { |
| 90 'msvs_target_platform': 'x64', | 86 'msvs_target_platform': 'x64', |
| 91 }, | 87 }, |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 ], | 376 ], |
| 381 }], | 377 }], |
| 382 ], | 378 ], |
| 383 } | 379 } |
| 384 | 380 |
| 385 # Local Variables: | 381 # Local Variables: |
| 386 # tab-width:2 | 382 # tab-width:2 |
| 387 # indent-tabs-mode:nil | 383 # indent-tabs-mode:nil |
| 388 # End: | 384 # End: |
| 389 # vim: set expandtab tabstop=2 shiftwidth=2: | 385 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |