| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 # TODO(mark): Upstream this file to v8. | 5 # TODO(mark): Upstream this file to v8. |
| 6 { | 6 { |
| 7 'variables': { | 7 'variables': { |
| 8 'chromium_code': 1, | 8 'chromium_code': 1, |
| 9 'base_source_files': [ | 9 'base_source_files': [ |
| 10 '../../v8/src/third_party/dtoa/dtoa.c', | 10 '../../v8/src/third_party/dtoa/dtoa.c', |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 ['OS=="linux"', {'sources/': [['include', 'src/platform-linux\\.cc$']]}]
, | 324 ['OS=="linux"', {'sources/': [['include', 'src/platform-linux\\.cc$']]}]
, |
| 325 ['OS=="mac"', {'sources/': [['include', 'src/platform-macos\\.cc$']]}], | 325 ['OS=="mac"', {'sources/': [['include', 'src/platform-macos\\.cc$']]}], |
| 326 ['OS=="win"', { | 326 ['OS=="win"', { |
| 327 'sources/': [['include', 'src/platform-win32\\.cc$']], | 327 'sources/': [['include', 'src/platform-win32\\.cc$']], |
| 328 # 4355, 4800 came from common.vsprops | 328 # 4355, 4800 came from common.vsprops |
| 329 # 4018, 4244 were a per file config on dtoa-config.c | 329 # 4018, 4244 were a per file config on dtoa-config.c |
| 330 # TODO: It's probably possible and desirable to stop disabling the | 330 # TODO: It's probably possible and desirable to stop disabling the |
| 331 # dtoa-specific warnings by modifying dtoa as was done in Chromium | 331 # dtoa-specific warnings by modifying dtoa as was done in Chromium |
| 332 # r9255. Refer to that revision for details. | 332 # r9255. Refer to that revision for details. |
| 333 'msvs_disabled_warnings': [4355, 4800, 4018, 4244], | 333 'msvs_disabled_warnings': [4355, 4800, 4018, 4244], |
| 334 'all_dependent_settings': { | 334 'link_settings': { |
| 335 'msvs_system_libraries': [ 'winmm.lib' ], | 335 'libraries': [ '-lwinmm.lib' ], |
| 336 }, | 336 }, |
| 337 }], | 337 }], |
| 338 ], | 338 ], |
| 339 }, | 339 }, |
| 340 { | 340 { |
| 341 'target_name': 'v8_nosnapshot', | 341 'target_name': 'v8_nosnapshot', |
| 342 'type': 'static_library', | 342 'type': 'static_library', |
| 343 'dependencies': [ | 343 'dependencies': [ |
| 344 'js2c', | 344 'js2c', |
| 345 'v8_base', | 345 'v8_base', |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 '$(SDKROOT)/usr/lib/libreadline.dylib' | 530 '$(SDKROOT)/usr/lib/libreadline.dylib' |
| 531 ]}, | 531 ]}, |
| 532 }], | 532 }], |
| 533 [ 'OS=="win"', { | 533 [ 'OS=="win"', { |
| 534 'sources!': [ '../../v8/src/d8-readline.cc' ], | 534 'sources!': [ '../../v8/src/d8-readline.cc' ], |
| 535 }], | 535 }], |
| 536 ], | 536 ], |
| 537 }, | 537 }, |
| 538 ], | 538 ], |
| 539 } | 539 } |
| OLD | NEW |