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

Side by Side Diff: BUILD.gn

Issue 1322883002: Make isolate.h usable without objects-inl.h header. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-includes-frames-2
Patch Set: Rebased. Created 5 years, 3 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/accessors.cc » ('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 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
853 "src/compiler/value-numbering-reducer.cc", 853 "src/compiler/value-numbering-reducer.cc",
854 "src/compiler/value-numbering-reducer.h", 854 "src/compiler/value-numbering-reducer.h",
855 "src/compiler/verifier.cc", 855 "src/compiler/verifier.cc",
856 "src/compiler/verifier.h", 856 "src/compiler/verifier.h",
857 "src/compiler/zone-pool.cc", 857 "src/compiler/zone-pool.cc",
858 "src/compiler/zone-pool.h", 858 "src/compiler/zone-pool.h",
859 "src/compiler.cc", 859 "src/compiler.cc",
860 "src/compiler.h", 860 "src/compiler.h",
861 "src/context-measure.cc", 861 "src/context-measure.cc",
862 "src/context-measure.h", 862 "src/context-measure.h",
863 "src/contexts-inl.h",
863 "src/contexts.cc", 864 "src/contexts.cc",
864 "src/contexts.h", 865 "src/contexts.h",
865 "src/conversions-inl.h", 866 "src/conversions-inl.h",
866 "src/conversions.cc", 867 "src/conversions.cc",
867 "src/conversions.h", 868 "src/conversions.h",
868 "src/counters.cc", 869 "src/counters.cc",
869 "src/counters.h", 870 "src/counters.h",
870 "src/cpu-profiler-inl.h", 871 "src/cpu-profiler-inl.h",
871 "src/cpu-profiler.cc", 872 "src/cpu-profiler.cc",
872 "src/cpu-profiler.h", 873 "src/cpu-profiler.h",
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
1046 "src/interface-descriptors.cc", 1047 "src/interface-descriptors.cc",
1047 "src/interface-descriptors.h", 1048 "src/interface-descriptors.h",
1048 "src/interpreter/bytecodes.cc", 1049 "src/interpreter/bytecodes.cc",
1049 "src/interpreter/bytecodes.h", 1050 "src/interpreter/bytecodes.h",
1050 "src/interpreter/bytecode-array-builder.cc", 1051 "src/interpreter/bytecode-array-builder.cc",
1051 "src/interpreter/bytecode-array-builder.h", 1052 "src/interpreter/bytecode-array-builder.h",
1052 "src/interpreter/bytecode-generator.cc", 1053 "src/interpreter/bytecode-generator.cc",
1053 "src/interpreter/bytecode-generator.h", 1054 "src/interpreter/bytecode-generator.h",
1054 "src/interpreter/interpreter.cc", 1055 "src/interpreter/interpreter.cc",
1055 "src/interpreter/interpreter.h", 1056 "src/interpreter/interpreter.h",
1057 "src/isolate-inl.h",
1056 "src/isolate.cc", 1058 "src/isolate.cc",
1057 "src/isolate.h", 1059 "src/isolate.h",
1058 "src/json-parser.h", 1060 "src/json-parser.h",
1059 "src/json-stringifier.h", 1061 "src/json-stringifier.h",
1060 "src/layout-descriptor-inl.h", 1062 "src/layout-descriptor-inl.h",
1061 "src/layout-descriptor.cc", 1063 "src/layout-descriptor.cc",
1062 "src/layout-descriptor.h", 1064 "src/layout-descriptor.h",
1063 "src/list-inl.h", 1065 "src/list-inl.h",
1064 "src/list.h", 1066 "src/list.h",
1065 "src/lithium-allocator-inl.h", 1067 "src/lithium-allocator-inl.h",
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
1821 if (!is_component_build) { 1823 if (!is_component_build) {
1822 sources += [ 1824 sources += [
1823 "$target_gen_dir/d8-js.cc", 1825 "$target_gen_dir/d8-js.cc",
1824 ] 1826 ]
1825 } 1827 }
1826 if (v8_enable_i18n_support) { 1828 if (v8_enable_i18n_support) {
1827 deps += [ "//third_party/icu" ] 1829 deps += [ "//third_party/icu" ]
1828 } 1830 }
1829 } 1831 }
1830 } 1832 }
OLDNEW
« no previous file with comments | « no previous file | src/accessors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698