OLD | NEW |
| (Empty) |
1 # Copyright (c) 2008 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 Import('env') | |
6 | |
7 env = env.Clone( | |
8 ) | |
9 | |
10 env.Append( | |
11 ) | |
12 | |
13 input_files = [ | |
14 '$THIRD_PARTY_DIR/breakpad_osx/src/client/mac/handler/dynamic_images.cc', | |
15 '$THIRD_PARTY_DIR/breakpad_osx/src/client/mac/handler/exception_handler.cc', | |
16 '$THIRD_PARTY_DIR/breakpad_osx/src/common/mac/file_id.cc', | |
17 '$THIRD_PARTY_DIR/breakpad_osx/src/common/mac/macho_id.cc', | |
18 '$THIRD_PARTY_DIR/breakpad_osx/src/common/mac/macho_utilities.cc', | |
19 '$THIRD_PARTY_DIR/breakpad_osx/src/common/mac/macho_walker.cc', | |
20 '$THIRD_PARTY_DIR/breakpad_osx/src/client/minidump_file_writer.cc', | |
21 '$THIRD_PARTY_DIR/breakpad_osx/src/client/mac/handler/minidump_generator.cc', | |
22 '$THIRD_PARTY_DIR/breakpad_osx/src/client/mac/handler/protected_memory_allocat
or.cc', | |
23 '$THIRD_PARTY_DIR/breakpad_osx/src/common/string_conversion.cc', | |
24 '$THIRD_PARTY_DIR/breakpad_osx/src/common/mac/string_utilities.cc', | |
25 ] | |
26 | |
27 env.GearsStaticLibrary('breakpad_osx-gears', input_files) | |
OLD | NEW |