| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'configurations': { | 7 'configurations': { |
| 8 'Debug': { | 8 'Debug': { |
| 9 'defines': [ | 9 'defines': [ |
| 10 'DEBUG', | 10 'DEBUG', |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 'XP_UNIX', | 207 'XP_UNIX', |
| 208 'DARWIN', | 208 'DARWIN', |
| 209 'XP_MACOSX', | 209 'XP_MACOSX', |
| 210 '_PR_PTHREADS', | 210 '_PR_PTHREADS', |
| 211 'HAVE_BSD_FLOCK', | 211 'HAVE_BSD_FLOCK', |
| 212 'HAVE_DLADDR', | 212 'HAVE_DLADDR', |
| 213 'HAVE_LCHOWN', | 213 'HAVE_LCHOWN', |
| 214 'HAVE_SOCKLEN_T', | 214 'HAVE_SOCKLEN_T', |
| 215 'HAVE_STRERROR', | 215 'HAVE_STRERROR', |
| 216 ], | 216 ], |
| 217 'sources!': [ |
| 218 # os_Darwin_x86.s and os_Darwin_x86_64.s are included by |
| 219 # os_Darwin.s. |
| 220 'nspr/pr/src/md/unix/os_Darwin_x86.s', |
| 221 'nspr/pr/src/md/unix/os_Darwin_x86_64.s', |
| 222 ], |
| 217 }], | 223 }], |
| 218 ['component == "static_library"', { | 224 ['component == "static_library"', { |
| 219 'defines': [ | 225 'defines': [ |
| 220 'NSPR_STATIC', | 226 'NSPR_STATIC', |
| 221 ], | 227 ], |
| 222 'direct_dependent_settings': { | 228 'direct_dependent_settings': { |
| 223 'defines': [ | 229 'defines': [ |
| 224 'NSPR_STATIC', | 230 'NSPR_STATIC', |
| 225 ], | 231 ], |
| 226 }, | 232 }, |
| (...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 '-include', '<(forced_include_file)', | 981 '-include', '<(forced_include_file)', |
| 976 ], | 982 ], |
| 977 }, | 983 }, |
| 978 }], | 984 }], |
| 979 ], | 985 ], |
| 980 }, | 986 }, |
| 981 ], | 987 ], |
| 982 }], | 988 }], |
| 983 ], | 989 ], |
| 984 } | 990 } |
| OLD | NEW |