| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 '../../v8/src/zone.cc', | 223 '../../v8/src/zone.cc', |
| 224 '../../v8/src/zone.h', | 224 '../../v8/src/zone.h', |
| 225 ], | 225 ], |
| 226 'not_base_source_files': [ | 226 'not_base_source_files': [ |
| 227 # These files are #included by others and are not meant to be compiled | 227 # These files are #included by others and are not meant to be compiled |
| 228 # directly. | 228 # directly. |
| 229 '../../v8/src/third_party/dtoa/dtoa.c', | 229 '../../v8/src/third_party/dtoa/dtoa.c', |
| 230 ], | 230 ], |
| 231 'd8_source_files': [ | 231 'd8_source_files': [ |
| 232 '../../v8/src/d8-debug.cc', | 232 '../../v8/src/d8-debug.cc', |
| 233 '../../v8/src/d8-posix.cc', |
| 233 '../../v8/src/d8-readline.cc', | 234 '../../v8/src/d8-readline.cc', |
| 234 '../../v8/src/d8-windows.cc', | 235 '../../v8/src/d8-windows.cc', |
| 235 '../../v8/src/d8-posix.cc', | |
| 236 '../../v8/src/d8.cc', | 236 '../../v8/src/d8.cc', |
| 237 ], | 237 ], |
| 238 }, | 238 }, |
| 239 'includes': [ | 239 'includes': [ |
| 240 '../common.gypi', | 240 '../common.gypi', |
| 241 ], | 241 ], |
| 242 'target_defaults': { | 242 'target_defaults': { |
| 243 'configurations': { | 243 'configurations': { |
| 244 'Debug': { | 244 'Debug': { |
| 245 'defines': [ | 245 'defines': [ |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 ]}, | 599 ]}, |
| 600 }], | 600 }], |
| 601 [ 'OS=="win"', { | 601 [ 'OS=="win"', { |
| 602 'sources!': [ '../../v8/src/d8-readline.cc', '../../v8/src/d8-posix.cc
' ], | 602 'sources!': [ '../../v8/src/d8-readline.cc', '../../v8/src/d8-posix.cc
' ], |
| 603 }], | 603 }], |
| 604 ], | 604 ], |
| 605 }, | 605 }, |
| 606 ]}], # OS != "linux" (temporary, TODO(sgk)) | 606 ]}], # OS != "linux" (temporary, TODO(sgk)) |
| 607 ], | 607 ], |
| 608 } | 608 } |
| OLD | NEW |