OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 | 9 |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 'defines': [ | 46 'defines': [ |
47 'SURFACE_IMPLEMENTATION', | 47 'SURFACE_IMPLEMENTATION', |
48 ], | 48 ], |
49 'conditions': [ | 49 'conditions': [ |
50 ['use_aura==1', { | 50 ['use_aura==1', { |
51 'sources/': [ | 51 'sources/': [ |
52 ['exclude', 'accelerated_surface_win.cc'], | 52 ['exclude', 'accelerated_surface_win.cc'], |
53 ['exclude', 'accelerated_surface_win.h'], | 53 ['exclude', 'accelerated_surface_win.h'], |
54 ], | 54 ], |
55 }], | 55 }], |
56 ['OS=="win"', { | |
57 'msvs_settings': { | |
58 'VCLinkerTool': { | |
59 'DelayLoadDLLs': [ | |
60 'd3d9.dll', | |
61 ], | |
62 }, | |
63 }, | |
64 }], | |
65 ], | 56 ], |
66 }, | 57 }, |
67 ], | 58 ], |
68 } | 59 } |
OLD | NEW |