| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 "src/js/symbol.js", | 250 "src/js/symbol.js", |
| 251 "src/js/array.js", | 251 "src/js/array.js", |
| 252 "src/js/string.js", | 252 "src/js/string.js", |
| 253 "src/js/uri.js", | 253 "src/js/uri.js", |
| 254 "src/js/math.js", | 254 "src/js/math.js", |
| 255 "src/third_party/fdlibm/fdlibm.js", | 255 "src/third_party/fdlibm/fdlibm.js", |
| 256 "src/js/regexp.js", | 256 "src/js/regexp.js", |
| 257 "src/js/arraybuffer.js", | 257 "src/js/arraybuffer.js", |
| 258 "src/js/typedarray.js", | 258 "src/js/typedarray.js", |
| 259 "src/js/iterator-prototype.js", | 259 "src/js/iterator-prototype.js", |
| 260 "src/js/generator.js", | |
| 261 "src/js/object-observe.js", | 260 "src/js/object-observe.js", |
| 262 "src/js/collection.js", | 261 "src/js/collection.js", |
| 263 "src/js/weak-collection.js", | 262 "src/js/weak-collection.js", |
| 264 "src/js/collection-iterator.js", | 263 "src/js/collection-iterator.js", |
| 265 "src/js/promise.js", | 264 "src/js/promise.js", |
| 266 "src/js/messages.js", | 265 "src/js/messages.js", |
| 267 "src/js/json.js", | 266 "src/js/json.js", |
| 268 "src/js/array-iterator.js", | 267 "src/js/array-iterator.js", |
| 269 "src/js/string-iterator.js", | 268 "src/js/string-iterator.js", |
| 270 "src/js/templates.js", | 269 "src/js/templates.js", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 # The script depends on this other script, this rule causes a rebuild if it | 304 # The script depends on this other script, this rule causes a rebuild if it |
| 306 # changes. | 305 # changes. |
| 307 inputs = [ | 306 inputs = [ |
| 308 "tools/jsmin.py", | 307 "tools/jsmin.py", |
| 309 ] | 308 ] |
| 310 | 309 |
| 311 # NOSORT | 310 # NOSORT |
| 312 sources = [ | 311 sources = [ |
| 313 "src/js/macros.py", | 312 "src/js/macros.py", |
| 314 "src/messages.h", | 313 "src/messages.h", |
| 315 "src/js/generator.js", | |
| 316 "src/js/harmony-atomics.js", | 314 "src/js/harmony-atomics.js", |
| 317 "src/js/harmony-regexp-exec.js", | 315 "src/js/harmony-regexp-exec.js", |
| 318 "src/js/harmony-object-observe.js", | 316 "src/js/harmony-object-observe.js", |
| 319 "src/js/harmony-sharedarraybuffer.js", | 317 "src/js/harmony-sharedarraybuffer.js", |
| 320 "src/js/harmony-simd.js", | 318 "src/js/harmony-simd.js", |
| 321 "src/js/harmony-species.js", | 319 "src/js/harmony-species.js", |
| 322 "src/js/harmony-unicode-regexps.js", | 320 "src/js/harmony-unicode-regexps.js", |
| 323 "src/js/harmony-string-padding.js", | 321 "src/js/harmony-string-padding.js", |
| 324 "src/js/promise-extra.js", | 322 "src/js/promise-extra.js", |
| 325 ] | 323 ] |
| (...skipping 1790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2116 | 2114 |
| 2117 configs -= [ "//build/config/compiler:chromium_code" ] | 2115 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2118 configs += [ "//build/config/compiler:no_chromium_code" ] | 2116 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2119 configs += [ | 2117 configs += [ |
| 2120 ":internal_config", | 2118 ":internal_config", |
| 2121 ":libplatform_config", | 2119 ":libplatform_config", |
| 2122 ":features", | 2120 ":features", |
| 2123 ":toolchain", | 2121 ":toolchain", |
| 2124 ] | 2122 ] |
| 2125 } | 2123 } |
| OLD | NEW |