| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 2184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2195 } | 2195 } |
| 2196 ], | 2196 ], |
| 2197 ['OS=="aix"', { | 2197 ['OS=="aix"', { |
| 2198 'sources': [ | 2198 'sources': [ |
| 2199 'base/debug/stack_trace_posix.cc', | 2199 'base/debug/stack_trace_posix.cc', |
| 2200 'base/platform/platform-aix.cc', | 2200 'base/platform/platform-aix.cc', |
| 2201 'base/platform/platform-posix.h', | 2201 'base/platform/platform-posix.h', |
| 2202 'base/platform/platform-posix.cc' | 2202 'base/platform/platform-posix.cc' |
| 2203 ]}, | 2203 ]}, |
| 2204 ], | 2204 ], |
| 2205 ['OS=="fuchsia"', { |
| 2206 'sources': [ |
| 2207 'base/debug/stack_trace_fuchsia.cc', |
| 2208 'base/platform/platform-fuchsia.cc', |
| 2209 ]}, |
| 2210 ], |
| 2205 ['OS=="solaris"', { | 2211 ['OS=="solaris"', { |
| 2206 'link_settings': { | 2212 'link_settings': { |
| 2207 'libraries': [ | 2213 'libraries': [ |
| 2208 '-lnsl -lrt', | 2214 '-lnsl -lrt', |
| 2209 ]}, | 2215 ]}, |
| 2210 'sources': [ | 2216 'sources': [ |
| 2211 'base/debug/stack_trace_posix.cc', | 2217 'base/debug/stack_trace_posix.cc', |
| 2212 'base/platform/platform-solaris.cc', | 2218 'base/platform/platform-solaris.cc', |
| 2213 'base/platform/platform-posix.h', | 2219 'base/platform/platform-posix.h', |
| 2214 'base/platform/platform-posix.cc', | 2220 'base/platform/platform-posix.cc', |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2614 }], | 2620 }], |
| 2615 ['want_separate_host_toolset==1', { | 2621 ['want_separate_host_toolset==1', { |
| 2616 'toolsets': ['host'], | 2622 'toolsets': ['host'], |
| 2617 }, { | 2623 }, { |
| 2618 'toolsets': ['target'], | 2624 'toolsets': ['target'], |
| 2619 }], | 2625 }], |
| 2620 ], | 2626 ], |
| 2621 }, | 2627 }, |
| 2622 ], | 2628 ], |
| 2623 } | 2629 } |
| OLD | NEW |