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

Side by Side Diff: BUILD.gn

Issue 2479863002: Add icu libraries to unittests dependencies (Closed)
Patch Set: Check only i18n flag and fix gn Created 4 years, 1 month 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 | gni/v8.gni » ('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/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 25 matching lines...) Expand all
36 36
37 # Sets -dENABLE_DISASSEMBLER. 37 # Sets -dENABLE_DISASSEMBLER.
38 v8_enable_disassembler = "" 38 v8_enable_disassembler = ""
39 39
40 # Sets -dENABLE_GDB_JIT_INTERFACE. 40 # Sets -dENABLE_GDB_JIT_INTERFACE.
41 v8_enable_gdbjit = "" 41 v8_enable_gdbjit = ""
42 42
43 # Sets -dENABLE_HANDLE_ZAPPING. 43 # Sets -dENABLE_HANDLE_ZAPPING.
44 v8_enable_handle_zapping = true 44 v8_enable_handle_zapping = true
45 45
46 # Enable ECMAScript Internationalization API. Enabling this feature will
47 # add a dependency on the ICU library.
48 v8_enable_i18n_support = true
49
50 # Enable slow dchecks. 46 # Enable slow dchecks.
51 v8_enable_slow_dchecks = false 47 v8_enable_slow_dchecks = false
52 48
53 # Interpreted regexp engine exists as platform-independent alternative 49 # Interpreted regexp engine exists as platform-independent alternative
54 # based where the regular expression is compiled to a bytecode. 50 # based where the regular expression is compiled to a bytecode.
55 v8_interpreted_regexp = false 51 v8_interpreted_regexp = false
56 52
57 # Sets -dOBJECT_PRINT. 53 # Sets -dOBJECT_PRINT.
58 v8_object_print = "" 54 v8_object_print = ""
59 55
(...skipping 2919 matching lines...) Expand 10 before | Expand all | Expand 10 after
2979 ] 2975 ]
2980 2976
2981 configs = [ 2977 configs = [
2982 ":external_config", 2978 ":external_config",
2983 ":internal_config_base", 2979 ":internal_config_base",
2984 ] 2980 ]
2985 } 2981 }
2986 2982
2987 v8_fuzzer("wasm_data_section_fuzzer") { 2983 v8_fuzzer("wasm_data_section_fuzzer") {
2988 } 2984 }
OLDNEW
« no previous file with comments | « no previous file | gni/v8.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698