| 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 # changes. | 293 # changes. |
| 294 inputs = [ "tools/jsmin.py" ] | 294 inputs = [ "tools/jsmin.py" ] |
| 295 | 295 |
| 296 sources = [ | 296 sources = [ |
| 297 "src/js/macros.py", | 297 "src/js/macros.py", |
| 298 "src/messages.h", | 298 "src/messages.h", |
| 299 "src/js/proxy.js", | 299 "src/js/proxy.js", |
| 300 "src/js/generator.js", | 300 "src/js/generator.js", |
| 301 "src/js/harmony-atomics.js", | 301 "src/js/harmony-atomics.js", |
| 302 "src/js/harmony-regexp.js", | 302 "src/js/harmony-regexp.js", |
| 303 "src/js/harmony-reflect.js", | |
| 304 "src/js/harmony-object-observe.js", | 303 "src/js/harmony-object-observe.js", |
| 305 "src/js/harmony-sharedarraybuffer.js", | 304 "src/js/harmony-sharedarraybuffer.js", |
| 306 "src/js/harmony-simd.js", | 305 "src/js/harmony-simd.js", |
| 307 "src/js/harmony-species.js", | 306 "src/js/harmony-species.js", |
| 308 "src/js/harmony-unicode-regexps.js", | 307 "src/js/harmony-unicode-regexps.js", |
| 309 "src/js/promise-extra.js" | 308 "src/js/promise-extra.js" |
| 310 ] | 309 ] |
| 311 | 310 |
| 312 outputs = [ | 311 outputs = [ |
| 313 "$target_gen_dir/experimental-libraries.cc", | 312 "$target_gen_dir/experimental-libraries.cc", |
| (...skipping 1678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1992 ] | 1991 ] |
| 1993 | 1992 |
| 1994 configs -= [ "//build/config/compiler:chromium_code" ] | 1993 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1995 configs += [ "//build/config/compiler:no_chromium_code" ] | 1994 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 1996 configs += [ | 1995 configs += [ |
| 1997 ":internal_config", | 1996 ":internal_config", |
| 1998 ":features", | 1997 ":features", |
| 1999 ":toolchain", | 1998 ":toolchain", |
| 2000 ] | 1999 ] |
| 2001 } | 2000 } |
| OLD | NEW |