| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 | 297 |
| 298 # 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 |
| 299 # changes. | 299 # changes. |
| 300 inputs = [ "tools/jsmin.py" ] | 300 inputs = [ "tools/jsmin.py" ] |
| 301 | 301 |
| 302 sources = [ | 302 sources = [ |
| 303 "src/js/macros.py", | 303 "src/js/macros.py", |
| 304 "src/messages.h", | 304 "src/messages.h", |
| 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", | |
| 308 "src/js/harmony-regexp-exec.js", | 307 "src/js/harmony-regexp-exec.js", |
| 309 "src/js/harmony-object-observe.js", | 308 "src/js/harmony-object-observe.js", |
| 310 "src/js/harmony-sharedarraybuffer.js", | 309 "src/js/harmony-sharedarraybuffer.js", |
| 311 "src/js/harmony-simd.js", | 310 "src/js/harmony-simd.js", |
| 312 "src/js/harmony-species.js", | 311 "src/js/harmony-species.js", |
| 313 "src/js/harmony-unicode-regexps.js", | 312 "src/js/harmony-unicode-regexps.js", |
| 314 "src/js/harmony-string-padding.js", | 313 "src/js/harmony-string-padding.js", |
| 315 "src/js/promise-extra.js" | 314 "src/js/promise-extra.js" |
| 316 ] | 315 ] |
| 317 | 316 |
| (...skipping 1778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2096 | 2095 |
| 2097 configs -= [ "//build/config/compiler:chromium_code" ] | 2096 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2098 configs += [ "//build/config/compiler:no_chromium_code" ] | 2097 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2099 configs += [ | 2098 configs += [ |
| 2100 ":internal_config", | 2099 ":internal_config", |
| 2101 ":libplatform_config", | 2100 ":libplatform_config", |
| 2102 ":features", | 2101 ":features", |
| 2103 ":toolchain", | 2102 ":toolchain", |
| 2104 ] | 2103 ] |
| 2105 } | 2104 } |
| OLD | NEW |