Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(334)

Side by Side Diff: ui/gfx/gfx_tests.gyp

Issue 555543003: ui/gfx: Remove duplicated win condition. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698