1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/crashreporter/google-breakpad/src/processor/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +UNIFIED_SOURCES += [ 1.11 + 'basic_code_modules.cc', 1.12 + 'basic_source_line_resolver.cc', 1.13 + 'call_stack.cc', 1.14 + 'cfi_frame_info.cc', 1.15 + 'minidump.cc', 1.16 + 'source_line_resolver_base.cc', 1.17 + 'stack_frame_symbolizer.cc', 1.18 + 'stackwalker.cc', 1.19 + 'stackwalker_amd64.cc', 1.20 + 'stackwalker_arm.cc', 1.21 + 'stackwalker_ppc.cc', 1.22 + 'stackwalker_sparc.cc', 1.23 + 'stackwalker_x86.cc', 1.24 + 'tokenize.cc', 1.25 +] 1.26 + 1.27 +FINAL_LIBRARY = 'xulapp_s' 1.28 + 1.29 +LOCAL_INCLUDES += [ 1.30 + '..', 1.31 + '../..', 1.32 +] 1.33 +