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

Side by Side Diff: Source/core/core.gyp

Issue 30843002: Remove superfluous PRETTY_FUNCTION define (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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
« no previous file with comments | « Source/config.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2009 Google Inc. All rights reserved. 2 # Copyright (C) 2009 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 '<(SHARED_INTERMEDIATE_DIR)/blink/StyleBuilder.cpp', 324 '<(SHARED_INTERMEDIATE_DIR)/blink/StyleBuilder.cpp',
325 '<(SHARED_INTERMEDIATE_DIR)/blink/StyleBuilderFunctions.cpp', 325 '<(SHARED_INTERMEDIATE_DIR)/blink/StyleBuilderFunctions.cpp',
326 ], 326 ],
327 'conditions': [ 327 'conditions': [
328 ['OS=="win" and component=="shared_library"', { 328 ['OS=="win" and component=="shared_library"', {
329 'defines': [ 329 'defines': [
330 'USING_V8_SHARED', 330 'USING_V8_SHARED',
331 ], 331 ],
332 }], 332 }],
333 ['OS=="win"', { 333 ['OS=="win"', {
334 'defines': [
335 '__PRETTY_FUNCTION__=__FUNCTION__',
336 ],
337 # In generated bindings code: 'switch contains default but no case'. 334 # In generated bindings code: 'switch contains default but no case'.
338 # Disable c4267 warnings until we fix size_t to int truncations. 335 # Disable c4267 warnings until we fix size_t to int truncations.
339 'msvs_disabled_warnings': [ 4065, 4267 ], 336 'msvs_disabled_warnings': [ 4065, 4267 ],
340 }], 337 }],
341 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def ines', { 338 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def ines', {
342 'cflags': [ 339 'cflags': [
343 '<!@(pkg-config --cflags-only-I ipp)', 340 '<!@(pkg-config --cflags-only-I ipp)',
344 ], 341 ],
345 }], 342 }],
346 ], 343 ],
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 }, 500 },
504 'action': [ 501 'action': [
505 '../build/scripts/check_objc_rename.sh', 502 '../build/scripts/check_objc_rename.sh',
506 '<(class_whitelist_regex)', 503 '<(class_whitelist_regex)',
507 '<(category_whitelist_regex)', 504 '<(category_whitelist_regex)',
508 ], 505 ],
509 }, 506 },
510 ], 507 ],
511 }, 508 },
512 }], 509 }],
513 ['OS=="win"', {
514 'direct_dependent_settings': {
515 'defines': [
516 '__PRETTY_FUNCTION__=__FUNCTION__',
517 ],
518 },
519 }],
520 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def ines', { 510 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def ines', {
521 'direct_dependent_settings': { 511 'direct_dependent_settings': {
522 'cflags': [ 512 'cflags': [
523 '<!@(pkg-config --cflags-only-I ipp)', 513 '<!@(pkg-config --cflags-only-I ipp)',
524 ], 514 ],
525 }, 515 },
526 }], 516 }],
527 ['"WTF_USE_WEBAUDIO_FFMPEG=1" in feature_defines', { 517 ['"WTF_USE_WEBAUDIO_FFMPEG=1" in feature_defines', {
528 # This directory needs to be on the include path for multiple sub-targ ets of webcore. 518 # This directory needs to be on the include path for multiple sub-targ ets of webcore.
529 'direct_dependent_settings': { 519 'direct_dependent_settings': {
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
1096 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h', 1086 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h',
1097 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp', 1087 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp',
1098 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h', 1088 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h',
1099 ], 1089 ],
1100 'sources/': [ 1090 'sources/': [
1101 ['exclude', 'testing/js'], 1091 ['exclude', 'testing/js'],
1102 ], 1092 ],
1103 }, 1093 },
1104 ], # targets 1094 ], # targets
1105 } 1095 }
OLDNEW
« no previous file with comments | « Source/config.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698