OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
236 ], | 236 ], |
237 'sources': [ | 237 'sources': [ |
238 'demo/demo_main.cc', | 238 'demo/demo_main.cc', |
239 ], | 239 ], |
240 'conditions': [ | 240 'conditions': [ |
241 ['use_x11==1', { | 241 ['use_x11==1', { |
242 'dependencies': [ | 242 'dependencies': [ |
243 '../gfx/x/gfx_x11.gyp:gfx_x11', | 243 '../gfx/x/gfx_x11.gyp:gfx_x11', |
244 ], | 244 ], |
245 }], | 245 }], |
246 ['OS=="win"', { | |
scottmg
2016/07/01 19:19:02
I feel like this should be depending on ui/gfx or
Ilya Kulshin
2016/07/01 19:46:39
Unless I'm misunderstanding the gyp, it looks like
| |
247 'msvs_settings': { | |
248 'VCLinkerTool': { | |
249 'AdditionalDependencies': [ | |
250 'dwrite.lib', | |
251 ] | |
252 } | |
253 } | |
254 }], | |
246 ] | 255 ] |
247 }, | 256 }, |
248 { | 257 { |
249 'target_name': 'aura_unittests', | 258 'target_name': 'aura_unittests', |
250 'type': 'executable', | 259 'type': 'executable', |
251 'dependencies': [ | 260 'dependencies': [ |
252 '../../base/base.gyp:test_support_base', | 261 '../../base/base.gyp:test_support_base', |
253 '../../skia/skia.gyp:skia', | 262 '../../skia/skia.gyp:skia', |
254 '../../testing/gtest.gyp:gtest', | 263 '../../testing/gtest.gyp:gtest', |
255 '../base/ime/ui_base_ime.gyp:ui_base_ime', | 264 '../base/ime/ui_base_ime.gyp:ui_base_ime', |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
307 'dependencies': [ | 316 'dependencies': [ |
308 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 317 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
309 ], | 318 ], |
310 }], | 319 }], |
311 ], | 320 ], |
312 }, | 321 }, |
313 ], | 322 ], |
314 }], | 323 }], |
315 ], | 324 ], |
316 } | 325 } |
OLD | NEW |