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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 Loading... | |
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 } |
OLD | NEW |