OLD | NEW |
1 // Copyright 2008, Google Inc. | 1 // Copyright 2008, Google Inc. |
2 // All rights reserved. | 2 // 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 22 matching lines...) Expand all Loading... |
33 #if defined(WIN32) | 33 #if defined(WIN32) |
34 #include "base/third_party/nspr/prcpucfg_win.h" | 34 #include "base/third_party/nspr/prcpucfg_win.h" |
35 #elif defined(__APPLE__) | 35 #elif defined(__APPLE__) |
36 #include "base/third_party/nspr/prcpucfg_mac.h" | 36 #include "base/third_party/nspr/prcpucfg_mac.h" |
37 #elif defined(__linux__) | 37 #elif defined(__linux__) |
38 #include "base/third_party/nspr/prcpucfg_linux.h" | 38 #include "base/third_party/nspr/prcpucfg_linux.h" |
39 #elif defined(__FreeBSD__) | 39 #elif defined(__FreeBSD__) |
40 #include "base/third_party/nspr/prcpucfg_freebsd.h" | 40 #include "base/third_party/nspr/prcpucfg_freebsd.h" |
41 #elif defined(__OpenBSD__) | 41 #elif defined(__OpenBSD__) |
42 #include "base/third_party/nspr/prcpucfg_openbsd.h" | 42 #include "base/third_party/nspr/prcpucfg_openbsd.h" |
43 #elif defined(__Solaris__) | 43 #elif defined(__sun) |
44 #include "base/third_party/nspr/prcpucfg_solaris.h" | 44 #include "base/third_party/nspr/prcpucfg_solaris.h" |
45 #else | 45 #else |
46 #error Provide a prcpucfg.h appropriate for your platform | 46 #error Provide a prcpucfg.h appropriate for your platform |
47 #endif | 47 #endif |
48 | 48 |
49 #endif // BASE_THIRD_PARTY_NSPR_PRCPUCFG_H__ | 49 #endif // BASE_THIRD_PARTY_NSPR_PRCPUCFG_H__ |
OLD | NEW |