| 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/dcheck_always_on.gni") | 7 import("//build/config/dcheck_always_on.gni") |
| 8 import("//build/config/mips.gni") | 8 import("//build/config/mips.gni") |
| 9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
| 10 | 10 |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 ] | 400 ] |
| 401 } | 401 } |
| 402 | 402 |
| 403 if (is_clang) { | 403 if (is_clang) { |
| 404 cflags += [ | 404 cflags += [ |
| 405 "-Wsign-compare", | 405 "-Wsign-compare", |
| 406 | 406 |
| 407 # TODO(hans): Remove once http://crbug.com/428099 is resolved. | 407 # TODO(hans): Remove once http://crbug.com/428099 is resolved. |
| 408 "-Winconsistent-missing-override", | 408 "-Winconsistent-missing-override", |
| 409 ] | 409 ] |
| 410 | |
| 411 #if (v8_current_cpu == "x64" || v8_current_cpu == "arm64" || | 410 #if (v8_current_cpu == "x64" || v8_current_cpu == "arm64" || |
| 412 # v8_current_cpu == "mips64el") { | 411 # v8_current_cpu == "mips64el") { |
| 413 # cflags += [ "-Wshorten-64-to-32" ] | 412 # cflags += [ "-Wshorten-64-to-32" ] |
| 414 #} | 413 #} |
| 415 } | 414 } |
| 416 } | 415 } |
| 417 | 416 |
| 418 ############################################################################### | 417 ############################################################################### |
| 419 # Actions | 418 # Actions |
| 420 # | 419 # |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 # The script depends on this other script, this rule causes a rebuild if it | 484 # The script depends on this other script, this rule causes a rebuild if it |
| 486 # changes. | 485 # changes. |
| 487 inputs = [ | 486 inputs = [ |
| 488 "tools/jsmin.py", | 487 "tools/jsmin.py", |
| 489 ] | 488 ] |
| 490 | 489 |
| 491 # NOSORT | 490 # NOSORT |
| 492 sources = [ | 491 sources = [ |
| 493 "src/js/macros.py", | 492 "src/js/macros.py", |
| 494 "src/messages.h", | 493 "src/messages.h", |
| 495 "src/js/harmony-atomics.js", | |
| 496 ] | 494 ] |
| 497 | 495 |
| 498 outputs = [ | 496 outputs = [ |
| 499 "$target_gen_dir/experimental-libraries.cc", | 497 "$target_gen_dir/experimental-libraries.cc", |
| 500 ] | 498 ] |
| 501 | 499 |
| 502 args = [ | 500 args = [ |
| 503 rebase_path("$target_gen_dir/experimental-libraries.cc", | 501 rebase_path("$target_gen_dir/experimental-libraries.cc", |
| 504 root_build_dir), | 502 root_build_dir), |
| 505 "EXPERIMENTAL", | 503 "EXPERIMENTAL", |
| (...skipping 2588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3094 ] | 3092 ] |
| 3095 | 3093 |
| 3096 configs = [ | 3094 configs = [ |
| 3097 ":external_config", | 3095 ":external_config", |
| 3098 ":internal_config_base", | 3096 ":internal_config_base", |
| 3099 ] | 3097 ] |
| 3100 } | 3098 } |
| 3101 | 3099 |
| 3102 v8_fuzzer("wasm_data_section_fuzzer") { | 3100 v8_fuzzer("wasm_data_section_fuzzer") { |
| 3103 } | 3101 } |
| OLD | NEW |