| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 "src/js/collection.js", | 255 "src/js/collection.js", |
| 256 "src/js/weak-collection.js", | 256 "src/js/weak-collection.js", |
| 257 "src/js/collection-iterator.js", | 257 "src/js/collection-iterator.js", |
| 258 "src/js/promise.js", | 258 "src/js/promise.js", |
| 259 "src/js/messages.js", | 259 "src/js/messages.js", |
| 260 "src/js/json.js", | 260 "src/js/json.js", |
| 261 "src/js/array-iterator.js", | 261 "src/js/array-iterator.js", |
| 262 "src/js/string-iterator.js", | 262 "src/js/string-iterator.js", |
| 263 "src/js/templates.js", | 263 "src/js/templates.js", |
| 264 "src/js/spread.js", | 264 "src/js/spread.js", |
| 265 "src/js/proxy.js", |
| 265 "src/debug/mirrors.js", | 266 "src/debug/mirrors.js", |
| 266 "src/debug/debug.js", | 267 "src/debug/debug.js", |
| 267 "src/debug/liveedit.js", | 268 "src/debug/liveedit.js", |
| 268 ] | 269 ] |
| 269 | 270 |
| 270 outputs = [ | 271 outputs = [ |
| 271 "$target_gen_dir/libraries.cc", | 272 "$target_gen_dir/libraries.cc", |
| 272 ] | 273 ] |
| 273 | 274 |
| 274 if (v8_enable_i18n_support) { | 275 if (v8_enable_i18n_support) { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 294 | 295 |
| 295 script = "tools/js2c.py" | 296 script = "tools/js2c.py" |
| 296 | 297 |
| 297 # The script depends on this other script, this rule causes a rebuild if it | 298 # The script depends on this other script, this rule causes a rebuild if it |
| 298 # changes. | 299 # changes. |
| 299 inputs = [ "tools/jsmin.py" ] | 300 inputs = [ "tools/jsmin.py" ] |
| 300 | 301 |
| 301 sources = [ | 302 sources = [ |
| 302 "src/js/macros.py", | 303 "src/js/macros.py", |
| 303 "src/messages.h", | 304 "src/messages.h", |
| 304 "src/js/proxy.js", | |
| 305 "src/js/generator.js", | 305 "src/js/generator.js", |
| 306 "src/js/harmony-atomics.js", | 306 "src/js/harmony-atomics.js", |
| 307 "src/js/harmony-regexp.js", | 307 "src/js/harmony-regexp.js", |
| 308 "src/js/harmony-object-observe.js", | 308 "src/js/harmony-object-observe.js", |
| 309 "src/js/harmony-sharedarraybuffer.js", | 309 "src/js/harmony-sharedarraybuffer.js", |
| 310 "src/js/harmony-simd.js", | 310 "src/js/harmony-simd.js", |
| 311 "src/js/harmony-species.js", | 311 "src/js/harmony-species.js", |
| 312 "src/js/harmony-unicode-regexps.js", | 312 "src/js/harmony-unicode-regexps.js", |
| 313 "src/js/promise-extra.js" | 313 "src/js/promise-extra.js" |
| 314 ] | 314 ] |
| (...skipping 1777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2092 | 2092 |
| 2093 configs -= [ "//build/config/compiler:chromium_code" ] | 2093 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2094 configs += [ "//build/config/compiler:no_chromium_code" ] | 2094 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2095 configs += [ | 2095 configs += [ |
| 2096 ":internal_config", | 2096 ":internal_config", |
| 2097 ":libplatform_config", | 2097 ":libplatform_config", |
| 2098 ":features", | 2098 ":features", |
| 2099 ":toolchain", | 2099 ":toolchain", |
| 2100 ] | 2100 ] |
| 2101 } | 2101 } |
| OLD | NEW |