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

Side by Side Diff: BUILD.gn

Issue 1095433002: Refactor compilation dependency handling. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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/compilation-dependencies.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/mips.gni") 7 import("//build/config/mips.gni")
8 8
9 # Because standalone V8 builds are not supported, assume this is part of a 9 # Because standalone V8 builds are not supported, assume this is part of a
10 # Chromium build. 10 # Chromium build.
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 "src/code-factory.cc", 531 "src/code-factory.cc",
532 "src/code-factory.h", 532 "src/code-factory.h",
533 "src/code-stubs.cc", 533 "src/code-stubs.cc",
534 "src/code-stubs.h", 534 "src/code-stubs.h",
535 "src/code-stubs-hydrogen.cc", 535 "src/code-stubs-hydrogen.cc",
536 "src/code.h", 536 "src/code.h",
537 "src/codegen.cc", 537 "src/codegen.cc",
538 "src/codegen.h", 538 "src/codegen.h",
539 "src/compilation-cache.cc", 539 "src/compilation-cache.cc",
540 "src/compilation-cache.h", 540 "src/compilation-cache.h",
541 "src/compilation-dependencies.cc",
542 "src/compilation-dependencies.h",
541 "src/compilation-statistics.cc", 543 "src/compilation-statistics.cc",
542 "src/compilation-statistics.h", 544 "src/compilation-statistics.h",
543 "src/compiler/access-builder.cc", 545 "src/compiler/access-builder.cc",
544 "src/compiler/access-builder.h", 546 "src/compiler/access-builder.h",
545 "src/compiler/all-nodes.cc", 547 "src/compiler/all-nodes.cc",
546 "src/compiler/all-nodes.h", 548 "src/compiler/all-nodes.h",
547 "src/compiler/ast-graph-builder.cc", 549 "src/compiler/ast-graph-builder.cc",
548 "src/compiler/ast-graph-builder.h", 550 "src/compiler/ast-graph-builder.h",
549 "src/compiler/ast-loop-assignment-analyzer.cc", 551 "src/compiler/ast-loop-assignment-analyzer.cc",
550 "src/compiler/ast-loop-assignment-analyzer.h", 552 "src/compiler/ast-loop-assignment-analyzer.h",
(...skipping 1051 matching lines...) Expand 10 before | Expand all | Expand 10 after
1602 sources += [ 1604 sources += [
1603 "src/d8-debug.cc", 1605 "src/d8-debug.cc",
1604 "$target_gen_dir/d8-js.cc", 1606 "$target_gen_dir/d8-js.cc",
1605 ] 1607 ]
1606 } 1608 }
1607 if (v8_enable_i18n_support) { 1609 if (v8_enable_i18n_support) {
1608 deps += [ "//third_party/icu" ] 1610 deps += [ "//third_party/icu" ]
1609 } 1611 }
1610 } 1612 }
1611 } 1613 }
OLDNEW
« no previous file with comments | « no previous file | src/compilation-dependencies.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698