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

Side by Side Diff: ui/display/display.gyp

Issue 304183010: Add display_unittests target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 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 | Annotate | Revision Log
« no previous file with comments | « build/all.gyp ('k') | 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 'util/display_util_export.h', 103 'util/display_util_export.h',
104 'util/edid_parser.cc', 104 'util/edid_parser.cc',
105 'util/edid_parser.h', 105 'util/edid_parser.h',
106 'util/x11/edid_parser_x11.cc', 106 'util/x11/edid_parser_x11.cc',
107 'util/x11/edid_parser_x11.h', 107 'util/x11/edid_parser_x11.h',
108 ], 108 ],
109 'conditions': [ 109 'conditions': [
110 ['use_x11 == 1', { 110 ['use_x11 == 1', {
111 'dependencies': [ 111 'dependencies': [
112 '../../build/linux/system.gyp:xrandr', 112 '../../build/linux/system.gyp:xrandr',
113 '../../ui/gfx/gfx.gyp:gfx', 113 '../../ui/gfx/x/gfx_x11.gyp:gfx_x11',
114 ], 114 ],
115 }], 115 }],
116 ['chromeos == 1', { 116 ['chromeos == 1', {
117 'dependencies': [ 117 'dependencies': [
118 'display_types', 118 'display_types',
119 ], 119 ],
120 }], 120 }],
121 ], 121 ],
122 }, 122 },
123 { 123 {
(...skipping 12 matching lines...) Expand all
136 'chromeos/test/test_display_snapshot.h', 136 'chromeos/test/test_display_snapshot.h',
137 ], 137 ],
138 'conditions': [ 138 'conditions': [
139 ['chromeos == 1', { 139 ['chromeos == 1', {
140 'dependencies': [ 140 'dependencies': [
141 'display_types', 141 'display_types',
142 ], 142 ],
143 }], 143 }],
144 ], 144 ],
145 }, 145 },
146 {
147 'target_name': 'display_unittests',
148 'type': 'executable',
149 'dependencies': [
150 '../../base/base.gyp:run_all_unittests',
Peter Mayo 2014/06/02 19:17:09 Why does this depend on run_all unittests?
dnicoara 2014/06/02 19:27:54 That target adds a simple instantiation of base::T
151 '../../testing/gtest.gyp:gtest',
152 'display_util',
153 ],
154 'include_dirs': [
155 '../..',
156 ],
157 'sources': [
158 'util/edid_parser_unittest.cc',
159 ],
160 },
146 ], 161 ],
147 } 162 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698