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

Side by Side Diff: gypfiles/standalone.gypi

Issue 2292053003: [inspector] Build inspector under v8_enable_inspector build flag. (Closed)
Patch Set: owners Created 4 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
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 28 matching lines...) Expand all
39 # - track the chain of stores leading from allocation site to use site. 39 # - track the chain of stores leading from allocation site to use site.
40 'msan_track_origins%': 2, 40 'msan_track_origins%': 2,
41 'visibility%': 'hidden', 41 'visibility%': 'hidden',
42 'v8_enable_backtrace%': 0, 42 'v8_enable_backtrace%': 0,
43 'v8_enable_i18n_support%': 1, 43 'v8_enable_i18n_support%': 1,
44 'v8_deprecation_warnings': 1, 44 'v8_deprecation_warnings': 1,
45 'v8_imminent_deprecation_warnings': 1, 45 'v8_imminent_deprecation_warnings': 1,
46 'msvs_multi_core_compile%': '1', 46 'msvs_multi_core_compile%': '1',
47 'mac_deployment_target%': '10.7', 47 'mac_deployment_target%': '10.7',
48 'release_extra_cflags%': '', 48 'release_extra_cflags%': '',
49 'v8_enable_inspector%': 0,
49 'variables': { 50 'variables': {
50 'variables': { 51 'variables': {
51 'variables': { 52 'variables': {
52 'variables': { 53 'variables': {
53 'conditions': [ 54 'conditions': [
54 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or \ 55 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or \
55 OS=="netbsd" or OS=="mac" or OS=="qnx" or OS=="aix"', { 56 OS=="netbsd" or OS=="mac" or OS=="qnx" or OS=="aix"', {
56 # This handles the Unix platforms we generally deal with. 57 # This handles the Unix platforms we generally deal with.
57 # Anything else gets passed through, which probably won't work 58 # Anything else gets passed through, which probably won't work
58 # very well; such hosts should pass an explicit target_arch 59 # very well; such hosts should pass an explicit target_arch
(...skipping 1450 matching lines...) Expand 10 before | Expand all | Expand 10 after
1509 '-fsanitize=cfi-vcall', 1510 '-fsanitize=cfi-vcall',
1510 '-fsanitize=cfi-derived-cast', 1511 '-fsanitize=cfi-derived-cast',
1511 '-fsanitize=cfi-unrelated-cast', 1512 '-fsanitize=cfi-unrelated-cast',
1512 ], 1513 ],
1513 }], 1514 }],
1514 ], 1515 ],
1515 }, 1516 },
1516 }], 1517 }],
1517 ], 1518 ],
1518 } 1519 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698