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

Side by Side Diff: components/test_runner/test_runner.gyp

Issue 2226733003: Color: Clean up color profile handling for layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master2
Patch Set: Fix windows Created 4 years, 4 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 'resources/fonts/AHEM____.TTF', 191 'resources/fonts/AHEM____.TTF',
192 'resources/fonts/android_main_fonts.xml', 192 'resources/fonts/android_main_fonts.xml',
193 'resources/fonts/android_fallback_fonts.xml', 193 'resources/fonts/android_fallback_fonts.xml',
194 ] 194 ]
195 }], 195 }],
196 }], 196 }],
197 ], 197 ],
198 }, 198 },
199 ], 199 ],
200 'conditions': [ 200 'conditions': [
201 ['OS=="mac" or OS=="win"', { 201 [OS=="win"', {
202 'targets': [ 202 'targets': [
203 { 203 {
204 # GN version: //components/test_runner:layout_test_helper 204 # GN version: //components/test_runner:layout_test_helper
205 'target_name': 'layout_test_helper', 205 'target_name': 'layout_test_helper',
206 'type': 'executable', 206 'type': 'executable',
207 'sources': [ 207 'sources': [
208 'helper/layout_test_helper_mac.mm',
209 'helper/layout_test_helper_win.cc', 208 'helper/layout_test_helper_win.cc',
210 ], 209 ],
211 'conditions': [
212 ['OS=="mac"', {
213 'link_settings': {
214 'libraries': [
215 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
216 ],
217 },
218 }],
219 ],
220 }, 210 },
221 ], 211 ],
222 }], # OS=="mac" or OS=="win" 212 }], # OS=="mac" or OS=="win"
223 ] 213 ]
224 } 214 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698