| 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 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 # The script depends on this other script, this rule causes a rebuild if it | 274 # The script depends on this other script, this rule causes a rebuild if it |
| 275 # changes. | 275 # changes. |
| 276 inputs = [ "tools/jsmin.py" ] | 276 inputs = [ "tools/jsmin.py" ] |
| 277 | 277 |
| 278 sources = [ | 278 sources = [ |
| 279 "src/js/macros.py", | 279 "src/js/macros.py", |
| 280 "src/messages.h", | 280 "src/messages.h", |
| 281 "src/js/proxy.js", | 281 "src/js/proxy.js", |
| 282 "src/js/generator.js", | 282 "src/js/generator.js", |
| 283 "src/js/harmony-atomics.js", | 283 "src/js/harmony-atomics.js", |
| 284 "src/js/harmony-array-includes.js", | |
| 285 "src/js/harmony-regexp.js", | 284 "src/js/harmony-regexp.js", |
| 286 "src/js/harmony-reflect.js", | 285 "src/js/harmony-reflect.js", |
| 287 "src/js/harmony-object-observe.js", | 286 "src/js/harmony-object-observe.js", |
| 288 "src/js/harmony-sharedarraybuffer.js", | 287 "src/js/harmony-sharedarraybuffer.js", |
| 289 "src/js/harmony-simd.js", | 288 "src/js/harmony-simd.js", |
| 290 "src/js/promise-extra.js" | 289 "src/js/promise-extra.js" |
| 291 ] | 290 ] |
| 292 | 291 |
| 293 outputs = [ | 292 outputs = [ |
| 294 "$target_gen_dir/experimental-libraries.cc", | 293 "$target_gen_dir/experimental-libraries.cc", |
| (...skipping 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1842 if (!is_component_build) { | 1841 if (!is_component_build) { |
| 1843 sources += [ | 1842 sources += [ |
| 1844 "$target_gen_dir/d8-js.cc", | 1843 "$target_gen_dir/d8-js.cc", |
| 1845 ] | 1844 ] |
| 1846 } | 1845 } |
| 1847 if (v8_enable_i18n_support) { | 1846 if (v8_enable_i18n_support) { |
| 1848 deps += [ "//third_party/icu" ] | 1847 deps += [ "//third_party/icu" ] |
| 1849 } | 1848 } |
| 1850 } | 1849 } |
| 1851 } | 1850 } |
| OLD | NEW |