 Chromium Code Reviews
 Chromium Code Reviews Issue 1396743005:
  Use //build_overrides instead of //build/modules for GN builds.  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master
    
  
    Issue 1396743005:
  Use //build_overrides instead of //build/modules for GN builds.  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master| OLD | NEW | 
|---|---|
| 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 | 
| 11 # Chromium build. | 11 # Chromium build. | 
| 12 import("//build/module_args/v8.gni") | 12 import("//build_overrides/v8.gni") | 
| 
Michael Achenbach
2015/10/12 08:19:03
In order to create a standalone v8 build, would we
 
jochen (gone - plz use gerrit)
2015/10/12 11:03:27
2)
 | |
| 13 | 13 | 
| 14 import("snapshot_toolchain.gni") | 14 import("snapshot_toolchain.gni") | 
| 15 | 15 | 
| 16 # TODO(jochen): These will need to be user-settable to support standalone V8 | 16 # TODO(jochen): These will need to be user-settable to support standalone V8 | 
| 17 # builds. | 17 # builds. | 
| 18 v8_deprecation_warnings = false | 18 v8_deprecation_warnings = false | 
| 19 v8_enable_disassembler = false | 19 v8_enable_disassembler = false | 
| 20 v8_enable_gdbjit = false | 20 v8_enable_gdbjit = false | 
| 21 v8_enable_handle_zapping = true | 21 v8_enable_handle_zapping = true | 
| 22 v8_enable_i18n_support = true | 22 v8_enable_i18n_support = true | 
| (...skipping 1799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1822 if (!is_component_build) { | 1822 if (!is_component_build) { | 
| 1823 sources += [ | 1823 sources += [ | 
| 1824 "$target_gen_dir/d8-js.cc", | 1824 "$target_gen_dir/d8-js.cc", | 
| 1825 ] | 1825 ] | 
| 1826 } | 1826 } | 
| 1827 if (v8_enable_i18n_support) { | 1827 if (v8_enable_i18n_support) { | 
| 1828 deps += [ "//third_party/icu" ] | 1828 deps += [ "//third_party/icu" ] | 
| 1829 } | 1829 } | 
| 1830 } | 1830 } | 
| 1831 } | 1831 } | 
| OLD | NEW |