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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/mips.gni") | 7 import("//build/config/mips.gni") |
8 | 8 |
9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
10 # Chromium build. | 10 # Chromium build. |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 "src/proxy.js", | 306 "src/proxy.js", |
307 "src/generator.js", | 307 "src/generator.js", |
308 "src/harmony-atomics.js", | 308 "src/harmony-atomics.js", |
309 "src/harmony-array-includes.js", | 309 "src/harmony-array-includes.js", |
310 "src/harmony-concat-spreadable.js", | 310 "src/harmony-concat-spreadable.js", |
311 "src/harmony-tostring.js", | 311 "src/harmony-tostring.js", |
312 "src/harmony-regexp.js", | 312 "src/harmony-regexp.js", |
313 "src/harmony-reflect.js", | 313 "src/harmony-reflect.js", |
314 "src/harmony-spread.js", | 314 "src/harmony-spread.js", |
315 "src/harmony-object.js", | 315 "src/harmony-object.js", |
| 316 "src/harmony-object-observe.js", |
316 "src/harmony-sharedarraybuffer.js", | 317 "src/harmony-sharedarraybuffer.js", |
317 "src/harmony-simd.js" | 318 "src/harmony-simd.js" |
318 ] | 319 ] |
319 | 320 |
320 outputs = [ | 321 outputs = [ |
321 "$target_gen_dir/experimental-libraries.cc", | 322 "$target_gen_dir/experimental-libraries.cc", |
322 ] | 323 ] |
323 | 324 |
324 args = [ | 325 args = [ |
325 rebase_path("$target_gen_dir/experimental-libraries.cc", | 326 rebase_path("$target_gen_dir/experimental-libraries.cc", |
(...skipping 1451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1777 if (!is_component_build) { | 1778 if (!is_component_build) { |
1778 sources += [ | 1779 sources += [ |
1779 "$target_gen_dir/d8-js.cc", | 1780 "$target_gen_dir/d8-js.cc", |
1780 ] | 1781 ] |
1781 } | 1782 } |
1782 if (v8_enable_i18n_support) { | 1783 if (v8_enable_i18n_support) { |
1783 deps += [ "//third_party/icu" ] | 1784 deps += [ "//third_party/icu" ] |
1784 } | 1785 } |
1785 } | 1786 } |
1786 } | 1787 } |
OLD | NEW |