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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 'type': 'static_library', | 44 'type': 'static_library', |
45 'dependencies': [ | 45 'dependencies': [ |
46 '../base/base.gyp:base', | 46 '../base/base.gyp:base', |
47 ], | 47 ], |
48 'sources': [ | 48 'sources': [ |
49 'util/win8_util.cc', | 49 'util/win8_util.cc', |
50 'util/win8_util.h', | 50 'util/win8_util.h', |
51 ], | 51 ], |
52 }, | 52 }, |
53 { | 53 { |
54 'target_name': 'metro_viewer', | |
55 'type': 'static_library', | |
56 'dependencies': [ | |
57 '../base/base.gyp:base', | |
58 '../ipc/ipc.gyp:ipc', | |
59 '../ui/aura/aura.gyp:aura', | |
60 '../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages', | |
61 ], | |
62 'sources': [ | |
63 'viewer/metro_viewer_process_host.cc', | |
64 'viewer/metro_viewer_process_host.h', | |
65 ], | |
66 }, | |
67 { | |
68 'target_name': 'test_support_win8', | 54 'target_name': 'test_support_win8', |
69 'type': 'static_library', | 55 'type': 'static_library', |
70 'dependencies': [ | 56 'dependencies': [ |
71 '../base/base.gyp:base', | 57 '../base/base.gyp:base', |
72 'test_registrar_constants', | 58 'test_registrar_constants', |
73 ], | 59 ], |
74 'sources': [ | 60 'sources': [ |
75 'test/metro_registration_helper.cc', | 61 'test/metro_registration_helper.cc', |
76 'test/metro_registration_helper.h', | 62 'test/metro_registration_helper.h', |
77 'test/open_with_dialog_async.cc', | 63 'test/open_with_dialog_async.cc', |
(...skipping 12 matching lines...) Expand all Loading... |
90 'include_dirs': [ | 76 'include_dirs': [ |
91 '..', | 77 '..', |
92 ], | 78 ], |
93 'sources': [ | 79 'sources': [ |
94 'test/test_registrar_constants.cc', | 80 'test/test_registrar_constants.cc', |
95 'test/test_registrar_constants.h', | 81 'test/test_registrar_constants.h', |
96 ], | 82 ], |
97 }, | 83 }, |
98 ], | 84 ], |
99 } | 85 } |
OLD | NEW |