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

Side by Side Diff: build/features.gypi

Issue 345903004: Split out libplatform into a separate libary (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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
OLDNEW
1 # Copyright 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 # based where the regular expression is compiled to a bytecode. 52 # based where the regular expression is compiled to a bytecode.
53 'v8_interpreted_regexp%': 0, 53 'v8_interpreted_regexp%': 0,
54 54
55 # Enable ECMAScript Internationalization API. Enabling this feature will 55 # Enable ECMAScript Internationalization API. Enabling this feature will
56 # add a dependency on the ICU library. 56 # add a dependency on the ICU library.
57 'v8_enable_i18n_support%': 1, 57 'v8_enable_i18n_support%': 1,
58 58
59 # Enable compiler warnings when using V8_DEPRECATED apis. 59 # Enable compiler warnings when using V8_DEPRECATED apis.
60 'v8_deprecation_warnings%': 0, 60 'v8_deprecation_warnings%': 0,
61 61
62 # Use the v8 provided v8::Platform implementation.
63 'v8_use_default_platform%': 1,
64
65 # Use external files for startup data blobs: 62 # Use external files for startup data blobs:
66 # the JS builtins sources and the start snapshot. 63 # the JS builtins sources and the start snapshot.
67 'v8_use_external_startup_data%': 0, 64 'v8_use_external_startup_data%': 0,
68 }, 65 },
69 'target_defaults': { 66 'target_defaults': {
70 'conditions': [ 67 'conditions': [
71 ['v8_enable_disassembler==1', { 68 ['v8_enable_disassembler==1', {
72 'defines': ['ENABLE_DISASSEMBLER',], 69 'defines': ['ENABLE_DISASSEMBLER',],
73 }], 70 }],
74 ['v8_enable_gdbjit==1', { 71 ['v8_enable_gdbjit==1', {
(...skipping 10 matching lines...) Expand all
85 }], 82 }],
86 ['v8_interpreted_regexp==1', { 83 ['v8_interpreted_regexp==1', {
87 'defines': ['V8_INTERPRETED_REGEXP',], 84 'defines': ['V8_INTERPRETED_REGEXP',],
88 }], 85 }],
89 ['v8_deprecation_warnings==1', { 86 ['v8_deprecation_warnings==1', {
90 'defines': ['V8_DEPRECATION_WARNINGS',], 87 'defines': ['V8_DEPRECATION_WARNINGS',],
91 }], 88 }],
92 ['v8_enable_i18n_support==1', { 89 ['v8_enable_i18n_support==1', {
93 'defines': ['V8_I18N_SUPPORT',], 90 'defines': ['V8_I18N_SUPPORT',],
94 }], 91 }],
95 ['v8_use_default_platform==1', {
96 'defines': ['V8_USE_DEFAULT_PLATFORM',],
97 }],
98 ['v8_compress_startup_data=="bz2"', { 92 ['v8_compress_startup_data=="bz2"', {
99 'defines': ['COMPRESS_STARTUP_DATA_BZ2',], 93 'defines': ['COMPRESS_STARTUP_DATA_BZ2',],
100 }], 94 }],
101 ['v8_use_external_startup_data==1', { 95 ['v8_use_external_startup_data==1', {
102 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA',], 96 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA',],
103 }], 97 }],
104 ], # conditions 98 ], # conditions
105 'configurations': { 99 'configurations': {
106 'DebugBaseCommon': { 100 'DebugBaseCommon': {
107 'abstract': 1, 101 'abstract': 1,
(...skipping 20 matching lines...) Expand all
128 'defines': ['ENABLE_EXTRA_CHECKS',], 122 'defines': ['ENABLE_EXTRA_CHECKS',],
129 }], 123 }],
130 ['v8_enable_handle_zapping==1', { 124 ['v8_enable_handle_zapping==1', {
131 'defines': ['ENABLE_HANDLE_ZAPPING',], 125 'defines': ['ENABLE_HANDLE_ZAPPING',],
132 }], 126 }],
133 ], # conditions 127 ], # conditions
134 }, # Release 128 }, # Release
135 }, # configurations 129 }, # configurations
136 }, # target_defaults 130 }, # target_defaults
137 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698