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

Side by Side Diff: Tools/Scripts/webkitruby/check-for-inappropriate-macros-in-external-headers-tests/resources/Fake.framework/Headers/Fail.h

Issue 14107015: Rename OS(DARWIN) to OS(MACOSX). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 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 // Common macros that we want to catch. 1 // Common macros that we want to catch.
2 #if PLATFORM(MAC) 2 #if PLATFORM(MAC)
3 #endif 3 #endif
4 #if CPU(X86) 4 #if CPU(X86)
5 #endif 5 #endif
6 #if OS(DARWIN) 6 #if OS(MACOSX)
7 #endif 7 #endif
8 #if COMPILER(CLANG) 8 #if COMPILER(CLANG)
9 #endif 9 #endif
10 #if ENABLE(FEATURE) 10 #if ENABLE(FEATURE)
11 #endif 11 #endif
12 #if HAVE(FEATURE) 12 #if HAVE(FEATURE)
13 #endif 13 #endif
14 #if USE(FEATURE) 14 #if USE(FEATURE)
15 #endif 15 #endif
16 #if COMPILER_SUPPORTS(FEATURE) 16 #if COMPILER_SUPPORTS(FEATURE)
17 #endif 17 #endif
18 #if COMPILER_QUIRK(FEATURE) 18 #if COMPILER_QUIRK(FEATURE)
19 #endif 19 #endif
20 20
21 // Indented. 21 // Indented.
22 #if 1 22 #if 1
23 #if PLATFORM(X) 23 #if PLATFORM(X)
24 #endif 24 #endif
25 #endif 25 #endif
26 26
27 // Conditionals, we don't evalute. We just check for the existence of the macro. 27 // Conditionals, we don't evalute. We just check for the existence of the macro.
28 #if defined(ignored) && PLATFORM(X) 28 #if defined(ignored) && PLATFORM(X)
29 #endif 29 #endif
OLDNEW
« no previous file with comments | « Tools/Scripts/webkitruby/check-for-inappropriate-macros-in-external-headers-tests/fake-data-failing-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698