| 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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 'direct_dependent_settings': { | 433 'direct_dependent_settings': { |
| 434 'include_dirs': [ | 434 'include_dirs': [ |
| 435 '../../v8/include', | 435 '../../v8/include', |
| 436 ], | 436 ], |
| 437 }, | 437 }, |
| 438 'export_dependent_settings': [ | 438 'export_dependent_settings': [ |
| 439 'v8_base', | 439 'v8_base', |
| 440 ], | 440 ], |
| 441 }, | 441 }, |
| 442 { | 442 { |
| 443 'target_name': 'v8_shell', | 443 'target_name': 'v8_shell_sample', |
| 444 'type': 'executable', | 444 'type': 'executable', |
| 445 'dependencies': [ | 445 'dependencies': [ |
| 446 'v8', | 446 'v8', |
| 447 ], | 447 ], |
| 448 'sources': [ | 448 'sources': [ |
| 449 '../../v8/samples/shell.cc', | 449 '../../v8/samples/shell.cc', |
| 450 ], | 450 ], |
| 451 'conditions': [ | 451 'conditions': [ |
| 452 [ 'OS=="win"', { | 452 [ 'OS=="win"', { |
| 453 # This could be gotten by not setting chromium_code, if that's OK. | 453 # This could be gotten by not setting chromium_code, if that's OK. |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 ]}, | 602 ]}, |
| 603 }], | 603 }], |
| 604 [ 'OS=="win"', { | 604 [ 'OS=="win"', { |
| 605 'sources!': [ '../../v8/src/d8-readline.cc', '../../v8/src/d8-posix.cc
' ], | 605 'sources!': [ '../../v8/src/d8-readline.cc', '../../v8/src/d8-posix.cc
' ], |
| 606 }], | 606 }], |
| 607 ], | 607 ], |
| 608 }, | 608 }, |
| 609 ]}], # OS != "linux" (temporary, TODO(sgk)) | 609 ]}], # OS != "linux" (temporary, TODO(sgk)) |
| 610 ], | 610 ], |
| 611 } | 611 } |
| OLD | NEW |