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

Side by Side Diff: BUILD.gn

Issue 1282793002: Debugger: load debugger builtins as normal native JS. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: use InstallFunctions and InstallConstants Created 5 years, 4 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/bootstrapper.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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 "src/weak-collection.js", 223 "src/weak-collection.js",
224 "src/collection-iterator.js", 224 "src/collection-iterator.js",
225 "src/promise.js", 225 "src/promise.js",
226 "src/messages.js", 226 "src/messages.js",
227 "src/json.js", 227 "src/json.js",
228 "src/array-iterator.js", 228 "src/array-iterator.js",
229 "src/string-iterator.js", 229 "src/string-iterator.js",
230 "src/templates.js", 230 "src/templates.js",
231 "src/harmony-array.js", 231 "src/harmony-array.js",
232 "src/harmony-typedarray.js", 232 "src/harmony-typedarray.js",
233 "src/debug/mirrors.js",
233 "src/debug/debug.js", 234 "src/debug/debug.js",
234 "src/debug/mirrors.js",
235 "src/debug/liveedit.js", 235 "src/debug/liveedit.js",
236 ] 236 ]
237 237
238 outputs = [ 238 outputs = [
239 "$target_gen_dir/libraries.cc", 239 "$target_gen_dir/libraries.cc",
240 ] 240 ]
241 241
242 if (v8_enable_i18n_support) { 242 if (v8_enable_i18n_support) {
243 sources += [ "src/i18n.js" ] 243 sources += [ "src/i18n.js" ]
244 } 244 }
(...skipping 1528 matching lines...) Expand 10 before | Expand all | Expand 10 after
1773 if (!is_component_build) { 1773 if (!is_component_build) {
1774 sources += [ 1774 sources += [
1775 "$target_gen_dir/d8-js.cc", 1775 "$target_gen_dir/d8-js.cc",
1776 ] 1776 ]
1777 } 1777 }
1778 if (v8_enable_i18n_support) { 1778 if (v8_enable_i18n_support) {
1779 deps += [ "//third_party/icu" ] 1779 deps += [ "//third_party/icu" ]
1780 } 1780 }
1781 } 1781 }
1782 } 1782 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698