Upstream version 7.35.144.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / heap / blink_heap.gyp
1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
7 #
8 #     * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 #     * Redistributions in binary form must reproduce the above
11 # copyright notice, this list of conditions and the following disclaimer
12 # in the documentation and/or other materials provided with the
13 # distribution.
14 #     * Neither the name of Google Inc. nor the names of its
15 # contributors may be used to endorse or promote products derived from
16 # this software without specific prior written permission.
17 #
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #
30
31 {
32   'includes': [
33     '../build/features.gypi',
34     '../build/win/precompile.gypi',
35     'blink_heap.gypi',
36   ],
37   'targets': [
38     {
39       'target_name': 'blink_heap_asm_stubs',
40       'type': 'static_library',
41       # VS2010 does not correctly incrementally link obj files generated
42       # from asm files. This flag disables UseLibraryDependencyInputs to
43       # avoid this problem.
44       'msvs_2010_disable_uldi_when_referenced': 1,
45       'includes': [
46         '../../../yasm/yasm_compile.gypi',
47       ],
48       'sources': [
49         '<@(heap_asm_files)',
50       ],
51       'variables': {
52         'more_yasm_flags': [],
53         'conditions': [
54           ['OS == "mac"', {
55             'more_yasm_flags': [
56               # Necessary to ensure symbols end up with a _ prefix; added by
57               # yasm_compile.gypi for Windows, but not Mac.
58               '-DPREFIX',
59             ],
60           }],
61           ['OS == "win" and target_arch == "x64"', {
62             'more_yasm_flags': [
63               '-DX64WIN=1',
64             ],
65           }],
66           ['OS != "win" and target_arch == "x64"', {
67             'more_yasm_flags': [
68               '-DX64POSIX=1',
69             ],
70           }],
71           ['target_arch == "ia32"', {
72             'more_yasm_flags': [
73               '-DIA32=1',
74             ],
75           }],
76           ['target_arch == "arm"', {
77             'more_yasm_flags': [
78               '-DARM=1',
79             ],
80           }],
81         ],
82         'yasm_flags': [
83           '>@(more_yasm_flags)',
84         ],
85         'yasm_output_path': '<(SHARED_INTERMEDIATE_DIR)/webcore/heap'
86       },
87     },
88     {
89       'target_name': 'blink_heap',
90       'type': '<(component)',
91       'dependencies': [
92         '../config.gyp:config',
93         '../wtf/wtf.gyp:wtf',
94         'blink_heap_asm_stubs',
95       ],
96       'defines': [
97         'HEAP_IMPLEMENTATION=1',
98         'INSIDE_BLINK',
99       ],
100       'sources': [
101         '<@(heap_files)',
102       ],
103     },
104   ],
105 }