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 ], |
11 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'win8_util', | |
14 'type': 'static_library', | |
15 'dependencies': [ | |
16 '../base/base.gyp:base', | |
17 ], | |
18 'sources': [ | |
19 'util/win8_util.cc', | |
20 'util/win8_util.h', | |
21 ], | |
22 }, | |
23 { | |
24 'target_name': 'metro_viewer_constants', | 13 'target_name': 'metro_viewer_constants', |
25 'type': 'static_library', | 14 'type': 'static_library', |
26 'include_dirs': [ | 15 'include_dirs': [ |
27 '..', | 16 '..', |
28 ], | 17 ], |
29 'sources': [ | 18 'sources': [ |
30 'viewer/metro_viewer_constants.cc', | 19 'viewer/metro_viewer_constants.cc', |
31 'viewer/metro_viewer_constants.h', | 20 'viewer/metro_viewer_constants.h', |
32 ], | 21 ], |
33 }, | 22 }, |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 'include_dirs': [ | 61 'include_dirs': [ |
73 '..', | 62 '..', |
74 ], | 63 ], |
75 'sources': [ | 64 'sources': [ |
76 'test/test_registrar_constants.cc', | 65 'test/test_registrar_constants.cc', |
77 'test/test_registrar_constants.h', | 66 'test/test_registrar_constants.h', |
78 ], | 67 ], |
79 }, | 68 }, |
80 ], | 69 ], |
81 } | 70 } |
OLD | NEW |