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

Side by Side Diff: BUILD.gn

Issue 510773002: Add Flags<T> class as a type-safe way of storing OR-combinations of enums. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Drop copy & assign Created 6 years, 3 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 | src/base/flags.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 # 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
(...skipping 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after
1158 "src/base/atomicops_internals_mac.h", 1158 "src/base/atomicops_internals_mac.h",
1159 "src/base/atomicops_internals_mips_gcc.h", 1159 "src/base/atomicops_internals_mips_gcc.h",
1160 "src/base/atomicops_internals_tsan.h", 1160 "src/base/atomicops_internals_tsan.h",
1161 "src/base/atomicops_internals_x86_gcc.cc", 1161 "src/base/atomicops_internals_x86_gcc.cc",
1162 "src/base/atomicops_internals_x86_gcc.h", 1162 "src/base/atomicops_internals_x86_gcc.h",
1163 "src/base/atomicops_internals_x86_msvc.h", 1163 "src/base/atomicops_internals_x86_msvc.h",
1164 "src/base/bits.h", 1164 "src/base/bits.h",
1165 "src/base/build_config.h", 1165 "src/base/build_config.h",
1166 "src/base/cpu.cc", 1166 "src/base/cpu.cc",
1167 "src/base/cpu.h", 1167 "src/base/cpu.h",
1168 "src/base/flags.h",
1168 "src/base/lazy-instance.h", 1169 "src/base/lazy-instance.h",
1169 "src/base/logging.cc", 1170 "src/base/logging.cc",
1170 "src/base/logging.h", 1171 "src/base/logging.h",
1171 "src/base/macros.h", 1172 "src/base/macros.h",
1172 "src/base/once.cc", 1173 "src/base/once.cc",
1173 "src/base/once.h", 1174 "src/base/once.h",
1174 "src/base/platform/elapsed-timer.h", 1175 "src/base/platform/elapsed-timer.h",
1175 "src/base/platform/time.cc", 1176 "src/base/platform/time.cc",
1176 "src/base/platform/time.h", 1177 "src/base/platform/time.h",
1177 "src/base/platform/condition-variable.cc", 1178 "src/base/platform/condition-variable.cc",
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
1347 deps = [ 1348 deps = [
1348 ":v8_base", 1349 ":v8_base",
1349 ":v8_nosnapshot", 1350 ":v8_nosnapshot",
1350 ] 1351 ]
1351 } 1352 }
1352 1353
1353 direct_dependent_configs = [ ":external_config" ] 1354 direct_dependent_configs = [ ":external_config" ]
1354 } 1355 }
1355 1356
1356 } 1357 }
OLDNEW
« no previous file with comments | « no previous file | src/base/flags.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698