Chromium Code Reviews| 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 12 matching lines...) Expand all Loading... | |
| 23 'dependencies': [ | 23 'dependencies': [ |
| 24 '../compat/compat.gyp:crashpad_compat', | 24 '../compat/compat.gyp:crashpad_compat', |
| 25 '../third_party/mini_chromium/mini_chromium.gyp:base', | 25 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 26 '../third_party/zlib/zlib.gyp:zlib', | 26 '../third_party/zlib/zlib.gyp:zlib', |
| 27 ], | 27 ], |
| 28 'include_dirs': [ | 28 'include_dirs': [ |
| 29 '..', | 29 '..', |
| 30 '<(INTERMEDIATE_DIR)', | 30 '<(INTERMEDIATE_DIR)', |
| 31 ], | 31 ], |
| 32 'sources': [ | 32 'sources': [ |
| 33 'file/delimited_file_reader.cc', | |
| 34 'file/delimited_file_reader.h', | |
| 33 'file/file_io.cc', | 35 'file/file_io.cc', |
| 34 'file/file_io.h', | 36 'file/file_io.h', |
| 35 'file/file_io_posix.cc', | 37 'file/file_io_posix.cc', |
| 36 'file/file_io_win.cc', | 38 'file/file_io_win.cc', |
| 37 'file/file_reader.cc', | 39 'file/file_reader.cc', |
| 38 'file/file_reader.h', | 40 'file/file_reader.h', |
| 39 'file/file_seeker.cc', | 41 'file/file_seeker.cc', |
| 40 'file/file_seeker.h', | 42 'file/file_seeker.h', |
| 41 'file/file_writer.cc', | 43 'file/file_writer.cc', |
| 42 'file/file_writer.h', | 44 'file/file_writer.h', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 128 'numeric/in_range_cast.h', | 130 'numeric/in_range_cast.h', |
| 129 'numeric/int128.h', | 131 'numeric/int128.h', |
| 130 'numeric/safe_assignment.h', | 132 'numeric/safe_assignment.h', |
| 131 'posix/close_multiple.cc', | 133 'posix/close_multiple.cc', |
| 132 'posix/close_multiple.h', | 134 'posix/close_multiple.h', |
| 133 'posix/close_stdio.cc', | 135 'posix/close_stdio.cc', |
| 134 'posix/close_stdio.h', | 136 'posix/close_stdio.h', |
| 135 'posix/drop_privileges.cc', | 137 'posix/drop_privileges.cc', |
| 136 'posix/drop_privileges.h', | 138 'posix/drop_privileges.h', |
| 137 'posix/process_info.h', | 139 'posix/process_info.h', |
| 140 'posix/process_info_linux.cc', | |
|
scottmg
2017/03/23 20:27:34
I guess adding this to the GN didn't get it exclud
Mark Mentovai
2017/03/23 20:30:35
scottmg wrote:
| |
| 138 'posix/process_info_mac.cc', | 141 'posix/process_info_mac.cc', |
| 139 'posix/signals.cc', | 142 'posix/signals.cc', |
| 140 'posix/signals.h', | 143 'posix/signals.h', |
| 141 'posix/symbolic_constants_posix.cc', | 144 'posix/symbolic_constants_posix.cc', |
| 142 'posix/symbolic_constants_posix.h', | 145 'posix/symbolic_constants_posix.h', |
| 143 'stdlib/aligned_allocator.cc', | 146 'stdlib/aligned_allocator.cc', |
| 144 'stdlib/aligned_allocator.h', | 147 'stdlib/aligned_allocator.h', |
| 145 'stdlib/cxx.h', | 148 'stdlib/cxx.h', |
| 146 'stdlib/map_insert.h', | 149 'stdlib/map_insert.h', |
| 147 'stdlib/objc.h', | 150 'stdlib/objc.h', |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 306 'libraries': [ | 309 'libraries': [ |
| 307 '-lcurl', | 310 '-lcurl', |
| 308 ], | 311 ], |
| 309 }, | 312 }, |
| 310 }, { # else: OS!="linux" | 313 }, { # else: OS!="linux" |
| 311 'sources!': [ | 314 'sources!': [ |
| 312 'net/http_transport_libcurl.cc', | 315 'net/http_transport_libcurl.cc', |
| 313 ], | 316 ], |
| 314 }], | 317 }], |
| 315 ], | 318 ], |
| 319 'target_conditions': [ | |
| 320 ['OS=="android"', { | |
| 321 'sources/': [ | |
| 322 ['include', '^posix/process_info_linux\\.cc$'], | |
| 323 ], | |
| 324 }], | |
| 325 ], | |
| 316 }, | 326 }, |
| 317 ], | 327 ], |
| 318 } | 328 } |
| OLD | NEW |