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

Side by Side Diff: BUILD.gn

Issue 834003002: Version 3.31.74.1 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@3.31
Patch Set: Created 5 years, 11 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 | build/android.gypi » ('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 # Because standalone V8 builds are not supported, assume this is part of a 5 # Because standalone V8 builds are not supported, assume this is part of a
6 # Chromium build. 6 # Chromium build.
7 import("//build/module_args/v8.gni") 7 import("//build/module_args/v8.gni")
8 8
9 # TODO(jochen): These will need to be user-settable to support standalone V8 9 # TODO(jochen): These will need to be user-settable to support standalone V8
10 # builds. 10 # builds.
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 "src/compiler/ast-graph-builder.h", 482 "src/compiler/ast-graph-builder.h",
483 "src/compiler/ast-loop-assignment-analyzer.cc", 483 "src/compiler/ast-loop-assignment-analyzer.cc",
484 "src/compiler/ast-loop-assignment-analyzer.h", 484 "src/compiler/ast-loop-assignment-analyzer.h",
485 "src/compiler/basic-block-instrumentor.cc", 485 "src/compiler/basic-block-instrumentor.cc",
486 "src/compiler/basic-block-instrumentor.h", 486 "src/compiler/basic-block-instrumentor.h",
487 "src/compiler/change-lowering.cc", 487 "src/compiler/change-lowering.cc",
488 "src/compiler/change-lowering.h", 488 "src/compiler/change-lowering.h",
489 "src/compiler/code-generator-impl.h", 489 "src/compiler/code-generator-impl.h",
490 "src/compiler/code-generator.cc", 490 "src/compiler/code-generator.cc",
491 "src/compiler/code-generator.h", 491 "src/compiler/code-generator.h",
492 "src/compiler/common-node-cache.cc",
492 "src/compiler/common-node-cache.h", 493 "src/compiler/common-node-cache.h",
493 "src/compiler/common-operator-reducer.cc", 494 "src/compiler/common-operator-reducer.cc",
494 "src/compiler/common-operator-reducer.h", 495 "src/compiler/common-operator-reducer.h",
495 "src/compiler/common-operator.cc", 496 "src/compiler/common-operator.cc",
496 "src/compiler/common-operator.h", 497 "src/compiler/common-operator.h",
497 "src/compiler/control-builders.cc", 498 "src/compiler/control-builders.cc",
498 "src/compiler/control-builders.h", 499 "src/compiler/control-builders.h",
499 "src/compiler/control-equivalence.h", 500 "src/compiler/control-equivalence.h",
500 "src/compiler/control-reducer.cc", 501 "src/compiler/control-reducer.cc",
501 "src/compiler/control-reducer.h", 502 "src/compiler/control-reducer.h",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 "src/compiler/move-optimizer.h", 557 "src/compiler/move-optimizer.h",
557 "src/compiler/node-aux-data-inl.h", 558 "src/compiler/node-aux-data-inl.h",
558 "src/compiler/node-aux-data.h", 559 "src/compiler/node-aux-data.h",
559 "src/compiler/node-cache.cc", 560 "src/compiler/node-cache.cc",
560 "src/compiler/node-cache.h", 561 "src/compiler/node-cache.h",
561 "src/compiler/node-matchers.h", 562 "src/compiler/node-matchers.h",
562 "src/compiler/node-properties-inl.h", 563 "src/compiler/node-properties-inl.h",
563 "src/compiler/node-properties.h", 564 "src/compiler/node-properties.h",
564 "src/compiler/node.cc", 565 "src/compiler/node.cc",
565 "src/compiler/node.h", 566 "src/compiler/node.h",
567 "src/compiler/opcodes.cc",
566 "src/compiler/opcodes.h", 568 "src/compiler/opcodes.h",
567 "src/compiler/operator-properties-inl.h", 569 "src/compiler/operator-properties.cc",
568 "src/compiler/operator-properties.h", 570 "src/compiler/operator-properties.h",
569 "src/compiler/operator.cc", 571 "src/compiler/operator.cc",
570 "src/compiler/operator.h", 572 "src/compiler/operator.h",
571 "src/compiler/pipeline.cc", 573 "src/compiler/pipeline.cc",
572 "src/compiler/pipeline.h", 574 "src/compiler/pipeline.h",
573 "src/compiler/pipeline-statistics.cc", 575 "src/compiler/pipeline-statistics.cc",
574 "src/compiler/pipeline-statistics.h", 576 "src/compiler/pipeline-statistics.h",
575 "src/compiler/raw-machine-assembler.cc", 577 "src/compiler/raw-machine-assembler.cc",
576 "src/compiler/raw-machine-assembler.h", 578 "src/compiler/raw-machine-assembler.h",
577 "src/compiler/register-allocator.cc", 579 "src/compiler/register-allocator.cc",
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
1457 deps = [ 1459 deps = [
1458 ":v8_base", 1460 ":v8_base",
1459 ":v8_nosnapshot", 1461 ":v8_nosnapshot",
1460 ] 1462 ]
1461 } 1463 }
1462 1464
1463 direct_dependent_configs = [ ":external_config" ] 1465 direct_dependent_configs = [ ":external_config" ]
1464 } 1466 }
1465 1467
1466 } 1468 }
OLDNEW
« no previous file with comments | « no previous file | build/android.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698