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

Side by Side Diff: src/common/common.gyp

Issue 1643633004: Improvements to GYP build (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad@master
Patch Set: Address review comments Created 4 years, 10 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
« no previous file with comments | « no previous file | src/processor/processor.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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/']]}],
39 ['OS!="linux"', {'sources/': [['exclude', '(^|/)linux/']]}],
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
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 }
OLDNEW
« no previous file with comments | « no previous file | src/processor/processor.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698