OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # Because standalone V8 builds are not supported, assume this is part of a | 5 # Because standalone V8 builds are not supported, assume this is part of a |
6 # Chromium build. | 6 # Chromium build. |
7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
8 | 8 |
9 # TODO(jochen): These will need to be user-settable to support standalone V8 | 9 # TODO(jochen): These will need to be user-settable to support standalone V8 |
10 # builds. | 10 # builds. |
(...skipping 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1282 "src/base/division-by-constant.cc", | 1282 "src/base/division-by-constant.cc", |
1283 "src/base/division-by-constant.h", | 1283 "src/base/division-by-constant.h", |
1284 "src/base/flags.h", | 1284 "src/base/flags.h", |
1285 "src/base/functional.cc", | 1285 "src/base/functional.cc", |
1286 "src/base/functional.h", | 1286 "src/base/functional.h", |
1287 "src/base/iterator.h", | 1287 "src/base/iterator.h", |
1288 "src/base/lazy-instance.h", | 1288 "src/base/lazy-instance.h", |
1289 "src/base/logging.cc", | 1289 "src/base/logging.cc", |
1290 "src/base/logging.h", | 1290 "src/base/logging.h", |
1291 "src/base/macros.h", | 1291 "src/base/macros.h", |
| 1292 "src/base/math.cc", |
| 1293 "src/base/math.h", |
1292 "src/base/once.cc", | 1294 "src/base/once.cc", |
1293 "src/base/once.h", | 1295 "src/base/once.h", |
1294 "src/base/platform/elapsed-timer.h", | 1296 "src/base/platform/elapsed-timer.h", |
1295 "src/base/platform/time.cc", | 1297 "src/base/platform/time.cc", |
1296 "src/base/platform/time.h", | 1298 "src/base/platform/time.h", |
1297 "src/base/platform/condition-variable.cc", | 1299 "src/base/platform/condition-variable.cc", |
1298 "src/base/platform/condition-variable.h", | 1300 "src/base/platform/condition-variable.h", |
1299 "src/base/platform/mutex.cc", | 1301 "src/base/platform/mutex.cc", |
1300 "src/base/platform/mutex.h", | 1302 "src/base/platform/mutex.h", |
1301 "src/base/platform/platform.h", | 1303 "src/base/platform/platform.h", |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1529 sources += [ | 1531 sources += [ |
1530 "src/d8-debug.cc", | 1532 "src/d8-debug.cc", |
1531 "$target_gen_dir/d8-js.cc", | 1533 "$target_gen_dir/d8-js.cc", |
1532 ] | 1534 ] |
1533 } | 1535 } |
1534 if (v8_enable_i18n_support) { | 1536 if (v8_enable_i18n_support) { |
1535 deps += [ "//third_party/icu" ] | 1537 deps += [ "//third_party/icu" ] |
1536 } | 1538 } |
1537 } | 1539 } |
1538 } | 1540 } |
OLD | NEW |