| 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"', { | |
| 247 'msvs_settings': { | |
| 248 'VCLinkerTool': { | |
| 249 'AdditionalDependencies': [ | |
| 250 'dwrite.lib', | |
| 251 ] | |
| 252 } | |
| 253 } | |
| 254 }], | |
| 255 ] | 246 ] |
| 256 }, | 247 }, |
| 257 { | 248 { |
| 258 'target_name': 'aura_unittests', | 249 'target_name': 'aura_unittests', |
| 259 'type': 'executable', | 250 'type': 'executable', |
| 260 'dependencies': [ | 251 'dependencies': [ |
| 261 '../../base/base.gyp:test_support_base', | 252 '../../base/base.gyp:test_support_base', |
| 262 '../../skia/skia.gyp:skia', | 253 '../../skia/skia.gyp:skia', |
| 263 '../../testing/gtest.gyp:gtest', | 254 '../../testing/gtest.gyp:gtest', |
| 264 '../base/ime/ui_base_ime.gyp:ui_base_ime', | 255 '../base/ime/ui_base_ime.gyp:ui_base_ime', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 'dependencies': [ | 307 'dependencies': [ |
| 317 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 308 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 318 ], | 309 ], |
| 319 }], | 310 }], |
| 320 ], | 311 ], |
| 321 }, | 312 }, |
| 322 ], | 313 ], |
| 323 }], | 314 }], |
| 324 ], | 315 ], |
| 325 } | 316 } |
| OLD | NEW |