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

Side by Side Diff: BUILD.gn

Issue 1368753003: Add C++ implementation of Object.defineProperties (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: make compilers happy Created 5 years, 2 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/heap/heap.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 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 # Because standalone V8 builds are not supported, assume this is part of a 10 # Because standalone V8 builds are not supported, assume this is part of a
(...skipping 1111 matching lines...) Expand 10 before | Expand all | Expand 10 after
1122 "src/profiler/heap-snapshot-generator.h", 1122 "src/profiler/heap-snapshot-generator.h",
1123 "src/profiler/profile-generator-inl.h", 1123 "src/profiler/profile-generator-inl.h",
1124 "src/profiler/profile-generator.cc", 1124 "src/profiler/profile-generator.cc",
1125 "src/profiler/profile-generator.h", 1125 "src/profiler/profile-generator.h",
1126 "src/profiler/sampler.cc", 1126 "src/profiler/sampler.cc",
1127 "src/profiler/sampler.h", 1127 "src/profiler/sampler.h",
1128 "src/profiler/strings-storage.cc", 1128 "src/profiler/strings-storage.cc",
1129 "src/profiler/strings-storage.h", 1129 "src/profiler/strings-storage.h",
1130 "src/profiler/unbound-queue-inl.h", 1130 "src/profiler/unbound-queue-inl.h",
1131 "src/profiler/unbound-queue.h", 1131 "src/profiler/unbound-queue.h",
1132 "src/property-descriptor.cc",
1133 "src/property-descriptor.h",
1132 "src/property-details.h", 1134 "src/property-details.h",
1133 "src/property.cc", 1135 "src/property.cc",
1134 "src/property.h", 1136 "src/property.h",
1135 "src/prototype.h", 1137 "src/prototype.h",
1136 "src/rewriter.cc", 1138 "src/rewriter.cc",
1137 "src/rewriter.h", 1139 "src/rewriter.h",
1138 "src/regexp/bytecodes-irregexp.h", 1140 "src/regexp/bytecodes-irregexp.h",
1139 "src/regexp/interpreter-irregexp.cc", 1141 "src/regexp/interpreter-irregexp.cc",
1140 "src/regexp/interpreter-irregexp.h", 1142 "src/regexp/interpreter-irregexp.h",
1141 "src/regexp/jsregexp-inl.h", 1143 "src/regexp/jsregexp-inl.h",
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
1819 if (!is_component_build) { 1821 if (!is_component_build) {
1820 sources += [ 1822 sources += [
1821 "$target_gen_dir/d8-js.cc", 1823 "$target_gen_dir/d8-js.cc",
1822 ] 1824 ]
1823 } 1825 }
1824 if (v8_enable_i18n_support) { 1826 if (v8_enable_i18n_support) {
1825 deps += [ "//third_party/icu" ] 1827 deps += [ "//third_party/icu" ]
1826 } 1828 }
1827 } 1829 }
1828 } 1830 }
OLDNEW
« no previous file with comments | « no previous file | src/heap/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698