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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 307 "src/js/harmony-regexp.js", |
| 308 "src/js/harmony-regexp-exec.js", |
308 "src/js/harmony-object-observe.js", | 309 "src/js/harmony-object-observe.js", |
309 "src/js/harmony-sharedarraybuffer.js", | 310 "src/js/harmony-sharedarraybuffer.js", |
310 "src/js/harmony-simd.js", | 311 "src/js/harmony-simd.js", |
311 "src/js/harmony-species.js", | 312 "src/js/harmony-species.js", |
312 "src/js/harmony-unicode-regexps.js", | 313 "src/js/harmony-unicode-regexps.js", |
313 "src/js/promise-extra.js" | 314 "src/js/promise-extra.js" |
314 ] | 315 ] |
315 | 316 |
316 outputs = [ | 317 outputs = [ |
317 "$target_gen_dir/experimental-libraries.cc", | 318 "$target_gen_dir/experimental-libraries.cc", |
(...skipping 1774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2092 | 2093 |
2093 configs -= [ "//build/config/compiler:chromium_code" ] | 2094 configs -= [ "//build/config/compiler:chromium_code" ] |
2094 configs += [ "//build/config/compiler:no_chromium_code" ] | 2095 configs += [ "//build/config/compiler:no_chromium_code" ] |
2095 configs += [ | 2096 configs += [ |
2096 ":internal_config", | 2097 ":internal_config", |
2097 ":libplatform_config", | 2098 ":libplatform_config", |
2098 ":features", | 2099 ":features", |
2099 ":toolchain", | 2100 ":toolchain", |
2100 ] | 2101 ] |
2101 } | 2102 } |
OLD | NEW |