OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 'test/test_compositor_host_win.cc', | 124 'test/test_compositor_host_win.cc', |
125 'test/test_compositor_host_x11.cc', | 125 'test/test_compositor_host_x11.cc', |
126 'test/test_layer_animation_delegate.cc', | 126 'test/test_layer_animation_delegate.cc', |
127 'test/test_layer_animation_delegate.h', | 127 'test/test_layer_animation_delegate.h', |
128 'test/test_layer_animation_observer.cc', | 128 'test/test_layer_animation_observer.cc', |
129 'test/test_layer_animation_observer.h', | 129 'test/test_layer_animation_observer.h', |
130 'test/test_utils.cc', | 130 'test/test_utils.cc', |
131 'test/test_utils.h', | 131 'test/test_utils.h', |
132 'transform_animation_curve_adapter_unittest.cc', | 132 'transform_animation_curve_adapter_unittest.cc', |
133 ], | 133 ], |
134 'msvs_settings': { | |
135 'VCCLCompilerTool': { | |
136 'ForcedIncludeFiles': [ 'build/intsafe_workaround.h' ], | |
137 }, | |
138 }, | |
139 'conditions': [ | 134 'conditions': [ |
140 # osmesa GL implementation is used on linux. | 135 # osmesa GL implementation is used on linux. |
141 ['OS=="linux"', { | 136 ['OS=="linux"', { |
142 'dependencies': [ | 137 'dependencies': [ |
143 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 138 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
144 ], | 139 ], |
145 }], | 140 }], |
146 ['os_posix == 1 and OS != "mac"', { | 141 ['os_posix == 1 and OS != "mac"', { |
147 'conditions': [ | 142 'conditions': [ |
148 ['linux_use_tcmalloc==1', { | 143 ['linux_use_tcmalloc==1', { |
149 'dependencies': [ | 144 'dependencies': [ |
150 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 145 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
151 ], | 146 ], |
152 }], | 147 }], |
153 ], | 148 ], |
154 }], | 149 }], |
155 ], | 150 ], |
156 }, | 151 }, |
157 ], | 152 ], |
158 } | 153 } |
OLD | NEW |