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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 }, | 7 }, |
8 'includes': [ | 8 'includes': [ |
9 '../build/win_precompile.gypi', | 9 '../build/win_precompile.gypi', |
10 ], | 10 ], |
(...skipping 17 matching lines...) Expand all Loading... |
28 '<(output_path)' | 28 '<(output_path)' |
29 ], | 29 ], |
30 'action': ['python', | 30 'action': ['python', |
31 '<(check_sdk_script)', | 31 '<(check_sdk_script)', |
32 '<(windows_sdk_path)', | 32 '<(windows_sdk_path)', |
33 '<(output_path)', | 33 '<(output_path)', |
34 ], | 34 ], |
35 }, | 35 }, |
36 ], | 36 ], |
37 }, | 37 }, |
| 38 { |
| 39 'target_name': 'win8_util', |
| 40 'type': 'static_library', |
| 41 'dependencies': [ |
| 42 '../base/base.gyp:base', |
| 43 ], |
| 44 'sources': [ |
| 45 'util/win8_util.cc', |
| 46 'util/win8_util.h', |
| 47 ], |
| 48 }, |
38 ], | 49 ], |
39 } | 50 } |
OLD | NEW |