Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: BUILD.gn

Issue 2161033003: Create compiler-scheduler subdir and move existing scheduler there (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/compiler-dispatcher/optimizing-compile-dispatcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 646
647 if (v8_embed_script != "") { 647 if (v8_embed_script != "") {
648 sources += [ v8_embed_script ] 648 sources += [ v8_embed_script ]
649 args += [ rebase_path(v8_embed_script, root_build_dir) ] 649 args += [ rebase_path(v8_embed_script, root_build_dir) ]
650 } 650 }
651 } 651 }
652 652
653 action("run_mkpeephole") { 653 action("run_mkpeephole") {
654 visibility = [ ":*" ] # Only targets in this file can depend on this. 654 visibility = [ ":*" ] # Only targets in this file can depend on this.
655 655
656 deps = [ ":mkpeephole($v8_snapshot_toolchain)" ] 656 deps = [
657 ":mkpeephole($v8_snapshot_toolchain)",
658 ]
657 659
658 outputs = [ v8_generated_peephole_source ] 660 outputs = [
661 v8_generated_peephole_source,
662 ]
659 663
660 sources = [] 664 sources = []
661 665
662 script = "tools/run.py" 666 script = "tools/run.py"
663 667
664 args = [ 668 args = [
665 "./" + rebase_path(get_label_info(":mkpeephole($v8_snapshot_toolchain)", 669 "./" + rebase_path(get_label_info(":mkpeephole($v8_snapshot_toolchain)",
666 "root_out_dir") + "/mkpeephole", 670 "root_out_dir") + "/mkpeephole",
667 root_build_dir), 671 root_build_dir),
668 rebase_path(v8_generated_peephole_source, root_build_dir), 672 rebase_path(v8_generated_peephole_source, root_build_dir),
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
911 "src/code-stubs.h", 915 "src/code-stubs.h",
912 "src/codegen.cc", 916 "src/codegen.cc",
913 "src/codegen.h", 917 "src/codegen.h",
914 "src/collector.h", 918 "src/collector.h",
915 "src/compilation-cache.cc", 919 "src/compilation-cache.cc",
916 "src/compilation-cache.h", 920 "src/compilation-cache.h",
917 "src/compilation-dependencies.cc", 921 "src/compilation-dependencies.cc",
918 "src/compilation-dependencies.h", 922 "src/compilation-dependencies.h",
919 "src/compilation-statistics.cc", 923 "src/compilation-statistics.cc",
920 "src/compilation-statistics.h", 924 "src/compilation-statistics.h",
925 "src/compiler-dispatcher/optimizing-compile-dispatcher.cc",
926 "src/compiler-dispatcher/optimizing-compile-dispatcher.h",
921 "src/compiler.cc", 927 "src/compiler.cc",
922 "src/compiler.h", 928 "src/compiler.h",
923 "src/compiler/access-builder.cc", 929 "src/compiler/access-builder.cc",
924 "src/compiler/access-builder.h", 930 "src/compiler/access-builder.h",
925 "src/compiler/access-info.cc", 931 "src/compiler/access-info.cc",
926 "src/compiler/access-info.h", 932 "src/compiler/access-info.h",
927 "src/compiler/all-nodes.cc", 933 "src/compiler/all-nodes.cc",
928 "src/compiler/all-nodes.h", 934 "src/compiler/all-nodes.h",
929 "src/compiler/ast-graph-builder.cc", 935 "src/compiler/ast-graph-builder.cc",
930 "src/compiler/ast-graph-builder.h", 936 "src/compiler/ast-graph-builder.h",
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
1403 "src/messages.cc", 1409 "src/messages.cc",
1404 "src/messages.h", 1410 "src/messages.h",
1405 "src/msan.h", 1411 "src/msan.h",
1406 "src/objects-body-descriptors-inl.h", 1412 "src/objects-body-descriptors-inl.h",
1407 "src/objects-body-descriptors.h", 1413 "src/objects-body-descriptors.h",
1408 "src/objects-debug.cc", 1414 "src/objects-debug.cc",
1409 "src/objects-inl.h", 1415 "src/objects-inl.h",
1410 "src/objects-printer.cc", 1416 "src/objects-printer.cc",
1411 "src/objects.cc", 1417 "src/objects.cc",
1412 "src/objects.h", 1418 "src/objects.h",
1413 "src/optimizing-compile-dispatcher.cc",
1414 "src/optimizing-compile-dispatcher.h",
1415 "src/ostreams.cc", 1419 "src/ostreams.cc",
1416 "src/ostreams.h", 1420 "src/ostreams.h",
1417 "src/parsing/expression-classifier.h", 1421 "src/parsing/expression-classifier.h",
1418 "src/parsing/func-name-inferrer.cc", 1422 "src/parsing/func-name-inferrer.cc",
1419 "src/parsing/func-name-inferrer.h", 1423 "src/parsing/func-name-inferrer.h",
1420 "src/parsing/parameter-initializer-rewriter.cc", 1424 "src/parsing/parameter-initializer-rewriter.cc",
1421 "src/parsing/parameter-initializer-rewriter.h", 1425 "src/parsing/parameter-initializer-rewriter.h",
1422 "src/parsing/parser-base.h", 1426 "src/parsing/parser-base.h",
1423 "src/parsing/parser.cc", 1427 "src/parsing/parser.cc",
1424 "src/parsing/parser.h", 1428 "src/parsing/parser.h",
(...skipping 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after
2501 2505
2502 deps = [ 2506 deps = [
2503 ":fuzzer_support", 2507 ":fuzzer_support",
2504 ] 2508 ]
2505 2509
2506 configs = [ ":internal_config" ] 2510 configs = [ ":internal_config" ]
2507 } 2511 }
2508 2512
2509 v8_fuzzer("wasm_asmjs_fuzzer") { 2513 v8_fuzzer("wasm_asmjs_fuzzer") {
2510 } 2514 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler-dispatcher/optimizing-compile-dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698