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

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

Issue 2037453002: Implement ui/gfx/geometry StructTraits unit tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix SizeF unit test Created 4 years, 6 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
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 '../resources/ui_resources.gyp:ui_test_pak', 84 '../resources/ui_resources.gyp:ui_test_pak',
85 'gfx.gyp:gfx', 85 'gfx.gyp:gfx',
86 'gfx.gyp:gfx_geometry', 86 'gfx.gyp:gfx_geometry',
87 'gfx.gyp:gfx_range', 87 'gfx.gyp:gfx_range',
88 'gfx.gyp:gfx_test_support', 88 'gfx.gyp:gfx_test_support',
89 ], 89 ],
90 'conditions': [ 90 'conditions': [
91 ['OS == "ios"', { 91 ['OS == "ios"', {
92 'sources': ['<@(_common_sources)'], 92 'sources': ['<@(_common_sources)'],
93 }, { # OS != "ios" 93 }, { # OS != "ios"
94 'dependencies': [
95 '../../mojo/mojo_edk.gyp:mojo_common_test_support',
96 '../../mojo/mojo_public.gyp:mojo_cpp_bindings',
97 ],
94 'sources': ['<@(_all_sources)'], 98 'sources': ['<@(_all_sources)'],
95 }], 99 }],
96 ['OS != "mac" and OS != "ios"', { 100 ['OS != "mac" and OS != "ios"', {
97 'sources': [ 101 'sources': [
98 'interpolated_transform_unittest.cc', 102 'interpolated_transform_unittest.cc',
99 'transform_unittest.cc', 103 'transform_unittest.cc',
100 ], 104 ],
101 }], 105 }],
102 ['OS == "android"', { 106 ['OS == "android"', {
103 'dependencies': [ 107 'dependencies': [
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 'dependencies': [ 197 'dependencies': [
194 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 198 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
195 ], 199 ],
196 }], 200 }],
197 ], 201 ],
198 }, 202 },
199 ], 203 ],
200 }], 204 }],
201 ], 205 ],
202 } 206 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698