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 'conditions': [ | 5 'conditions': [ |
6 ['OS=="win"', { | 6 ['OS=="win"', { |
7 'variables': { | 7 'variables': { |
8 'chromium_code': 1, | 8 'chromium_code': 1, |
9 }, | 9 }, |
10 'includes': [ | 10 'includes': [ |
11 '../../build/win_precompile.gypi', | 11 '../../build/win_precompile.gypi', |
12 ], | 12 ], |
13 'target_defaults': { | 13 'target_defaults': { |
14 'defines': [ | |
15 # This define is required to pull in the new Win8 interfaces from | |
16 # system headers like ShObjIdl.h | |
17 'NTDDI_VERSION=0x06020000', | |
18 ], | |
19 'msvs_settings': { | 14 'msvs_settings': { |
20 'VCLinkerTool': { | 15 'VCLinkerTool': { |
21 'AdditionalDependencies': [ | 16 'AdditionalDependencies': [ |
22 'D2D1.lib', | 17 'D2D1.lib', |
23 'D3D11.lib', | 18 'D3D11.lib', |
24 ], | 19 ], |
25 }, | 20 }, |
26 }, | 21 }, |
27 }, | 22 }, |
28 'targets': [ | 23 'targets': [ |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 'run_all_unittests.cc', | 89 'run_all_unittests.cc', |
95 'winrt_utils.cc', | 90 'winrt_utils.cc', |
96 'winrt_utils.h', | 91 'winrt_utils.h', |
97 'winrt_utils_unittest.cc', | 92 'winrt_utils_unittest.cc', |
98 ], | 93 ], |
99 }, | 94 }, |
100 ], | 95 ], |
101 },], | 96 },], |
102 ], | 97 ], |
103 } | 98 } |
OLD | NEW |