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

Side by Side Diff: compat/compat.gyp

Issue 1119783005: win: get tools/crashpad_database_util mostly working (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: fixes Created 5 years, 7 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 | « client/crash_report_database_win.cc ('k') | compat/win/getopt.h » ('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 The Crashpad Authors. All rights reserved. 1 # Copyright 2014 The Crashpad Authors. All rights reserved.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 17 matching lines...) Expand all
28 'mac/mach-o/getsect.h', 28 'mac/mach-o/getsect.h',
29 'mac/mach-o/loader.h', 29 'mac/mach-o/loader.h',
30 'mac/sys/resource.h', 30 'mac/sys/resource.h',
31 'non_mac/mach/mach.h', 31 'non_mac/mach/mach.h',
32 'non_win/dbghelp.h', 32 'non_win/dbghelp.h',
33 'non_win/minwinbase.h', 33 'non_win/minwinbase.h',
34 'non_win/timezoneapi.h', 34 'non_win/timezoneapi.h',
35 'non_win/verrsrc.h', 35 'non_win/verrsrc.h',
36 'non_win/windows.h', 36 'non_win/windows.h',
37 'non_win/winnt.h', 37 'non_win/winnt.h',
38 'win/getopt.h',
38 'win/sys/types.h', 39 'win/sys/types.h',
40 'win/time.cc',
41 'win/time.h',
39 'win/winnt.h', 42 'win/winnt.h',
40 ], 43 ],
41 'conditions': [ 44 'conditions': [
42 ['OS=="mac"', { 45 ['OS=="mac"', {
43 'dependencies': [ 46 'dependencies': [
44 '../third_party/apple_cctools/apple_cctools.gyp:apple_cctools', 47 '../third_party/apple_cctools/apple_cctools.gyp:apple_cctools',
45 ], 48 ],
46 'include_dirs': [ 49 'include_dirs': [
47 'mac', 50 'mac',
48 ], 51 ],
49 'direct_dependent_settings': { 52 'direct_dependent_settings': {
50 'include_dirs': [ 53 'include_dirs': [
51 'mac', 54 'mac',
52 ], 55 ],
53 }, 56 },
54 }], 57 }],
55 ['OS=="win"', { 58 ['OS=="win"', {
56 'include_dirs': [ 59 'include_dirs': [
57 'win', 60 'win',
58 ], 61 ],
59 'direct_dependent_settings': { 62 'direct_dependent_settings': {
60 'include_dirs': [ 63 'include_dirs': [
61 'win', 64 'win',
62 ], 65 ],
63 }, 66 },
67 'dependencies': [
68 '../third_party/getopt/getopt.gyp:getopt',
69 ],
64 }, { 70 }, {
65 'include_dirs': [ 71 'include_dirs': [
66 'non_win', 72 'non_win',
67 ], 73 ],
68 'direct_dependent_settings': { 74 'direct_dependent_settings': {
69 'include_dirs': [ 75 'include_dirs': [
70 'non_win', 76 'non_win',
71 ], 77 ],
72 }, 78 },
73 }], 79 }],
74 ], 80 ],
75 }, 81 },
76 ], 82 ],
77 } 83 }
OLDNEW
« no previous file with comments | « client/crash_report_database_win.cc ('k') | compat/win/getopt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698