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

Side by Side Diff: Source/config.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 | « no previous file | Source/core/core.gyp » ('j') | 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) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 'msvs_disabled_warnings': [ 45 'msvs_disabled_warnings': [
46 4138, 4244, 4291, 4305, 4344, 4355, 4521, 4099, 46 4138, 4244, 4291, 4305, 4344, 4355, 4521, 4099,
47 ], 47 ],
48 'conditions': [ 48 'conditions': [
49 ['OS=="win" and component=="shared_library"', { 49 ['OS=="win" and component=="shared_library"', {
50 'defines': [ 50 'defines': [
51 'USING_V8_SHARED', 51 'USING_V8_SHARED',
52 ], 52 ],
53 }], 53 }],
54 ['OS=="win"', { 54 ['OS=="win"', {
55 'defines': [
56 '__PRETTY_FUNCTION__=__FUNCTION__',
57 ],
58 'sources/': [ 55 'sources/': [
59 ['exclude', 'Posix\\.cpp$'], 56 ['exclude', 'Posix\\.cpp$'],
60 ], 57 ],
61 },{ # OS!="win" 58 },{ # OS!="win"
62 'sources/': [ 59 'sources/': [
63 ['exclude', 'Win\\.cpp$'], 60 ['exclude', 'Win\\.cpp$'],
64 ], 61 ],
65 }], 62 }],
66 ['OS!="mac"', { 63 ['OS!="mac"', {
67 'sources/': [ 64 'sources/': [
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 ], 113 ],
117 'direct_dependent_settings': { 114 'direct_dependent_settings': {
118 'cflags!': ['-Wglobal-constructors'], 115 'cflags!': ['-Wglobal-constructors'],
119 'xcode_settings': { 116 'xcode_settings': {
120 'WARNING_CFLAGS!': ['-Wglobal-constructors'], 117 'WARNING_CFLAGS!': ['-Wglobal-constructors'],
121 }, 118 },
122 }, 119 },
123 } 120 }
124 ], 121 ],
125 } 122 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/core.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698