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

Side by Side Diff: BUILD.gn

Issue 324013006: Revert "Fix gn build". (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 # TODO(jochen): These will need to be user-settable to support standalone V8 5 # TODO(jochen): These will need to be user-settable to support standalone V8
6 # builds. 6 # builds.
7 v8_compress_startup_data = "off" 7 v8_compress_startup_data = "off"
8 v8_deprecation_warnings = false 8 v8_deprecation_warnings = false
9 v8_enable_disassembler = false 9 v8_enable_disassembler = false
10 v8_enable_gdbjit = false 10 v8_enable_gdbjit = false
11 v8_enable_handle_zapping = true 11 v8_enable_handle_zapping = true
12 v8_enable_i18n_support = true 12 v8_enable_i18n_support = true
13 v8_enable_verify_heap = false 13 v8_enable_verify_heap = false
14 v8_interpreted_regexp = false 14 v8_interpreted_regexp = false
15 v8_object_print = false 15 v8_object_print = false
16 v8_postmortem_support = false 16 v8_postmortem_support = false
17 v8_use_default_platform = false 17 v8_use_default_platform = true
18 v8_use_snapshot = true 18 v8_use_snapshot = true
19 v8_enable_extra_checks = is_debug 19 v8_enable_extra_checks = is_debug
20 v8_target_arch = cpu_arch 20 v8_target_arch = cpu_arch
21 v8_random_seed = "314159265" 21 v8_random_seed = "314159265"
22 22
23 23
24 ############################################################################### 24 ###############################################################################
25 # Configurations 25 # Configurations
26 # 26 #
27 config("internal_config") { 27 config("internal_config") {
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 ":generate_trig_table", 331 ":generate_trig_table",
332 ":run_mksnapshot", 332 ":run_mksnapshot",
333 ":v8_base", 333 ":v8_base",
334 ] 334 ]
335 335
336 sources = [ 336 sources = [
337 "$target_gen_dir/libraries.cc", 337 "$target_gen_dir/libraries.cc",
338 "$target_gen_dir/experimental-libraries.cc", 338 "$target_gen_dir/experimental-libraries.cc",
339 "$target_gen_dir/trig-table.cc", 339 "$target_gen_dir/trig-table.cc",
340 "$target_gen_dir/snapshot.cc", 340 "$target_gen_dir/snapshot.cc",
341 "src/snapshot-common.cc",
342 ] 341 ]
343 342
344 configs -= [ "//build/config/compiler:chromium_code" ] 343 configs -= [ "//build/config/compiler:chromium_code" ]
345 configs += [ "//build/config/compiler:no_chromium_code" ] 344 configs += [ "//build/config/compiler:no_chromium_code" ]
346 configs += [ ":internal_config", ":features", ":toolchain" ] 345 configs += [ ":internal_config", ":features", ":toolchain" ]
347 } 346 }
348 347
349 source_set("v8_base") { 348 source_set("v8_base") {
350 visibility = ":*" # Only targets in this file can depend on this. 349 visibility = ":*" # Only targets in this file can depend on this.
351 350
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
1051 deps = [ 1050 deps = [
1052 ":v8_base", 1051 ":v8_base",
1053 ":v8_nosnapshot", 1052 ":v8_nosnapshot",
1054 ] 1053 ]
1055 } 1054 }
1056 1055
1057 direct_dependent_configs = [ ":external_config" ] 1056 direct_dependent_configs = [ ":external_config" ]
1058 } 1057 }
1059 1058
1060 } 1059 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698