OLD | NEW |
---|---|
1 # Copyright 2014 Google Inc. All rights reserved. | 1 # Copyright 2014 Google Inc. All rights reserved. |
2 # | 2 # |
3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
5 # met: | 5 # met: |
6 # | 6 # |
7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
(...skipping 17 matching lines...) Expand all Loading... | |
28 | 28 |
29 { | 29 { |
30 'target_defaults': { | 30 'target_defaults': { |
31 'target_conditions': [ | 31 'target_conditions': [ |
32 ['OS=="mac"', { | 32 ['OS=="mac"', { |
33 'defines': ['HAVE_MACH_O_NLIST_H'], | 33 'defines': ['HAVE_MACH_O_NLIST_H'], |
34 }], | 34 }], |
35 ['OS=="linux"', { | 35 ['OS=="linux"', { |
36 'defines': ['HAVE_A_OUT_H'], | 36 'defines': ['HAVE_A_OUT_H'], |
37 }], | 37 }], |
38 ['OS!="android"', {'sources/': [['exclude', 'android/']]}], | |
Mark Mentovai
2016/01/28 17:29:22
Tighter anchoring: '(^|/)android/', etc.
| |
39 ['OS!="linux"', {'sources/': [['exclude', 'linux/' ]]}], | |
Mark Mentovai
2016/01/28 17:29:22
We don’t usually bother with the extra whitespace
| |
40 ['OS!="mac"', {'sources/': [['exclude', 'mac/' ]]}], | |
41 ['OS!="solaris"', {'sources/': [['exclude', 'solaris/']]}], | |
42 ['OS!="win"', {'sources/': [['exclude', 'windows/']]}], | |
38 ], | 43 ], |
39 }, | 44 }, |
40 'targets': [ | 45 'targets': [ |
41 { | 46 { |
42 'target_name': 'common', | 47 'target_name': 'common', |
43 'type': 'static_library', | 48 'type': 'static_library', |
44 'sources': [ | 49 'sources': [ |
45 'android/breakpad_getcontext.S', | 50 'android/breakpad_getcontext.S', |
46 'android/include/elf.h', | 51 'android/include/elf.h', |
47 'android/include/link.h', | 52 'android/include/link.h', |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
234 '../build/testing.gypi:gmock_main', | 239 '../build/testing.gypi:gmock_main', |
235 '../build/testing.gypi:gmock', | 240 '../build/testing.gypi:gmock', |
236 '../build/testing.gypi:gtest', | 241 '../build/testing.gypi:gtest', |
237 ], | 242 ], |
238 'libraries': [ | 243 'libraries': [ |
239 '-ldl', | 244 '-ldl', |
240 ], | 245 ], |
241 }, | 246 }, |
242 ], | 247 ], |
243 } | 248 } |
OLD | NEW |