1ade98294d62fb440ab74cd2635fa6db5ec208477chrisha@chromium.org# Copyright 2010 Google Inc. All rights reserved.
2ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com#
3ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# Redistribution and use in source and binary forms, with or without
4ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# modification, are permitted provided that the following conditions are
5ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# met:
6ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com#
7ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com#     * Redistributions of source code must retain the above copyright
8ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# notice, this list of conditions and the following disclaimer.
9ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com#     * Redistributions in binary form must reproduce the above
10ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# copyright notice, this list of conditions and the following disclaimer
11ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# in the documentation and/or other materials provided with the
12ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# distribution.
13ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com#     * Neither the name of Google Inc. nor the names of its
14ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# contributors may be used to endorse or promote products derived from
15ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# this software without specific prior written permission.
16ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com#
17ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com
29ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com{
30ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com  'includes': [
3104dbd757334bbf94a7eb6742dd519021c8cacba3ivan.penkov@gmail.com    '../../build/common.gypi',
32ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com  ],
33ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com  'targets': [
34ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com    {
35ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      'target_name': 'build_all',
36ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      'type': 'none',
37ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      'dependencies': [
38ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com        './crash_generation/crash_generation.gyp:*',
39ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com        './handler/exception_handler.gyp:*',
40ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com        './sender/crash_report_sender.gyp:*',
41ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com        './unittests/client_tests.gyp:*',
42b6ee7dcb220db5c396d12ddf12e071c8ec48dfd3erikwright@chromium.org        './unittests/testing.gyp:*',
43a91e414f841dedc96efcae583f2fee6067fc637ferikwright@chromium.org        './tests/crash_generation_app/crash_generation_app.gyp:*',
44ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      ]
45ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com    },
46ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com    {
47ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      'target_name': 'common',
48ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      'type': 'static_library',
49ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      'include_dirs': [
50ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com        '<(DEPTH)',
51ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      ],
52ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      'direct_dependent_settings': {
53ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com        'include_dirs': [
54ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com          '<(DEPTH)',
55ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com        ]
56ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      },
57ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      'sources': [
58ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com        '<(DEPTH)/common/windows/guid_string.cc',
59ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com        '<(DEPTH)/common/windows/guid_string.h',
60ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com        '<(DEPTH)/common/windows/http_upload.cc',
61ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com        '<(DEPTH)/common/windows/http_upload.h',
629220e0baf1f59c067e82495d697306cc460c4e8cted.mielczarek        '<(DEPTH)/common/windows/string_utils.cc',
63ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com      ]
64ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com    }
65ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com  ]
66ffedcd49454ce56a8136489c2e60bb840e6205dahansl@google.com}
67