OLD | NEW |
---|---|
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
120 ['OS=="win"', { | 120 ['OS=="win"', { |
121 'link_settings': { | 121 'link_settings': { |
122 'libraries': [ | 122 'libraries': [ |
123 '-lpowrprof.lib', | 123 '-lpowrprof.lib', |
124 '-lversion.lib', | 124 '-lversion.lib', |
125 ], | 125 ], |
126 }, | 126 }, |
127 }], | 127 }], |
128 ] | 128 ] |
129 }, | 129 }, |
130 { | |
131 'target_name': 'snapshot_client', | |
scottmg
2016/01/13 19:12:42
This should probably be 'crashpad_' prefixed for c
scottmg
2016/01/13 19:12:42
I think 'client' is a bit confusing because it won
Patrick Monette
2016/01/13 22:59:40
Done.
Patrick Monette
2016/01/13 22:59:40
Done.
| |
132 'type': 'static_library', | |
133 'dependencies': [ | |
134 'crashpad_snapshot', | |
135 '../compat/compat.gyp:crashpad_compat', | |
136 '../third_party/mini_chromium/mini_chromium.gyp:base', | |
137 ], | |
138 'include_dirs': [ | |
139 '..', | |
140 ], | |
141 'sources': [ | |
142 'client/crashpad_annotations_win.cc', | |
scottmg
2016/01/13 19:12:42
api/ here too.
scottmg
2016/01/13 19:12:42
(This will be an empty target on non-Windows, not
Patrick Monette
2016/01/13 22:59:40
Done.
Patrick Monette
2016/01/13 22:59:40
Fixed.
| |
143 'client/crashpad_annotations_win.h', | |
144 ], | |
145 }, | |
130 ], | 146 ], |
131 } | 147 } |
OLD | NEW |