| 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 18 matching lines...) Expand all Loading... |
| 29 '..', | 29 '..', |
| 30 ], | 30 ], |
| 31 'sources': [ | 31 'sources': [ |
| 32 'minidump_extensions.h', | 32 'minidump_extensions.h', |
| 33 'minidump_file_writer.cc', | 33 'minidump_file_writer.cc', |
| 34 'minidump_file_writer.h', | 34 'minidump_file_writer.h', |
| 35 'minidump_stream_writer.cc', | 35 'minidump_stream_writer.cc', |
| 36 'minidump_stream_writer.h', | 36 'minidump_stream_writer.h', |
| 37 'minidump_string_writer.cc', | 37 'minidump_string_writer.cc', |
| 38 'minidump_string_writer.h', | 38 'minidump_string_writer.h', |
| 39 'minidump_system_info_writer.cc', |
| 40 'minidump_system_info_writer.h', |
| 39 'minidump_writable.cc', | 41 'minidump_writable.cc', |
| 40 'minidump_writable.h', | 42 'minidump_writable.h', |
| 41 'minidump_writer_util.cc', | 43 'minidump_writer_util.cc', |
| 42 'minidump_writer_util.h', | 44 'minidump_writer_util.h', |
| 43 ], | 45 ], |
| 44 }, | 46 }, |
| 45 { | 47 { |
| 46 'target_name': 'minidump_test', | 48 'target_name': 'minidump_test', |
| 47 'type': 'executable', | 49 'type': 'executable', |
| 48 'dependencies': [ | 50 'dependencies': [ |
| 49 'minidump', | 51 'minidump', |
| 50 '../third_party/gtest/gtest.gyp:gtest', | 52 '../third_party/gtest/gtest.gyp:gtest', |
| 51 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 53 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
| 52 ], | 54 ], |
| 53 'include_dirs': [ | 55 'include_dirs': [ |
| 54 '..', | 56 '..', |
| 55 ], | 57 ], |
| 56 'sources': [ | 58 'sources': [ |
| 57 '../third_party/gtest/gtest/src/gtest_main.cc', | 59 '../third_party/gtest/gtest/src/gtest_main.cc', |
| 58 'minidump_file_writer_test.cc', | 60 'minidump_file_writer_test.cc', |
| 59 'minidump_string_writer_test.cc', | 61 'minidump_string_writer_test.cc', |
| 62 'minidump_system_info_writer_test.cc', |
| 60 'minidump_writable_test.cc', | 63 'minidump_writable_test.cc', |
| 61 ], | 64 ], |
| 62 }, | 65 }, |
| 63 ], | 66 ], |
| 64 } | 67 } |
| OLD | NEW |