OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 'gfx.gyp:gfx', | 83 'gfx.gyp:gfx', |
84 'gfx.gyp:gfx_geometry', | 84 'gfx.gyp:gfx_geometry', |
85 'gfx.gyp:gfx_test_support', | 85 'gfx.gyp:gfx_test_support', |
86 ], | 86 ], |
87 'conditions': [ | 87 'conditions': [ |
88 ['OS == "ios"', { | 88 ['OS == "ios"', { |
89 'sources': ['<@(_common_sources)'], | 89 'sources': ['<@(_common_sources)'], |
90 }, { # OS != "ios" | 90 }, { # OS != "ios" |
91 'sources': ['<@(_all_sources)'], | 91 'sources': ['<@(_all_sources)'], |
92 }], | 92 }], |
93 ['OS == "win"', { | |
94 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
95 'msvs_disabled_warnings': [ 4267, ], | |
96 }], | |
97 ['OS != "mac" and OS != "ios"', { | 93 ['OS != "mac" and OS != "ios"', { |
98 'sources': [ | 94 'sources': [ |
99 'transform_unittest.cc', | 95 'transform_unittest.cc', |
100 'interpolated_transform_unittest.cc', | 96 'interpolated_transform_unittest.cc', |
101 ], | 97 ], |
102 }], | 98 }], |
103 ['use_pango == 1', { | 99 ['use_pango == 1', { |
104 'dependencies': [ | 100 'dependencies': [ |
105 '../../build/linux/system.gyp:fontconfig', | 101 '../../build/linux/system.gyp:fontconfig', |
106 '../../build/linux/system.gyp:pangocairo', | 102 '../../build/linux/system.gyp:pangocairo', |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 ], | 186 ], |
191 'variables': { | 187 'variables': { |
192 'test_suite_name': 'gfx_unittests', | 188 'test_suite_name': 'gfx_unittests', |
193 }, | 189 }, |
194 'includes': [ '../../build/apk_test.gypi' ], | 190 'includes': [ '../../build/apk_test.gypi' ], |
195 }, | 191 }, |
196 ], | 192 ], |
197 }], | 193 }], |
198 ], | 194 ], |
199 } | 195 } |
OLD | NEW |