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

Side by Side Diff: win8/metro_driver/metro_driver.gyp

Issue 11190060: Move NTDDI_VERSION define to common.gypi. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « win8/delegate_execute/delegate_execute.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « win8/delegate_execute/delegate_execute.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698