Initialize Tizen 2.3
[external/chromium.git] / base / third_party / dynamic_annotations / dynamic_annotations.gyp
1 # Copyright (c) 2010 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 {
6   'targets': [
7     {
8       'target_name': 'dynamic_annotations',
9       'type': 'static_library',
10       'include_dirs': [
11         '../../../',
12       ],
13       'sources': [
14         'dynamic_annotations.c',
15         'dynamic_annotations.h',
16       ],
17     },
18   ],
19   'conditions': [
20     ['OS == "win"', {
21       'targets': [
22         {
23           'target_name': 'dynamic_annotations_win64',
24           'type': 'static_library',
25           # We can't use dynamic_annotations target for win64 build since it is
26           # a 32-bit library.
27           # TODO(gregoryd): merge with dynamic_annotations when
28           # the win32/64 targets are merged.
29           'include_dirs': [
30               '../../../',
31           ],
32           'sources': [
33             'dynamic_annotations.c',
34             'dynamic_annotations.h',
35           ],
36           'configurations': {
37             'Common_Base': {
38               'msvs_target_platform': 'x64',
39             },
40           },
41         },
42       ],
43     }],
44   ],
45 }