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 'sources': [ | 44 'sources': [ |
45 'util/win8_util.cc', | 45 'util/win8_util.cc', |
46 'util/win8_util.h', | 46 'util/win8_util.h', |
47 ], | 47 ], |
48 }, | 48 }, |
49 { | 49 { |
50 'target_name': 'test_support_win8', | 50 'target_name': 'test_support_win8', |
51 'type': 'static_library', | 51 'type': 'static_library', |
52 'dependencies': [ | 52 'dependencies': [ |
53 '../base/base.gyp:base', | 53 '../base/base.gyp:base', |
| 54 'test_registrar_constants', |
54 ], | 55 ], |
55 'sources': [ | 56 'sources': [ |
| 57 'test/metro_registration_helper.cc', |
| 58 'test/metro_registration_helper.h', |
56 'test/open_with_dialog_async.cc', | 59 'test/open_with_dialog_async.cc', |
57 'test/open_with_dialog_async.h', | 60 'test/open_with_dialog_async.h', |
58 'test/open_with_dialog_controller.cc', | 61 'test/open_with_dialog_controller.cc', |
59 'test/open_with_dialog_controller.h', | 62 'test/open_with_dialog_controller.h', |
60 'test/ui_automation_client.cc', | 63 'test/ui_automation_client.cc', |
61 'test/ui_automation_client.h', | 64 'test/ui_automation_client.h', |
62 ], | 65 ], |
63 }, | 66 }, |
| 67 { |
| 68 'target_name': 'test_registrar', |
| 69 'type': 'executable', |
| 70 'dependencies': [ |
| 71 '../base/base.gyp:base', |
| 72 # Chrome is the default viewer process currently used by the tests. |
| 73 # TODO(robertshield): Investigate building a standalone metro viewer |
| 74 # process. |
| 75 '../chrome/chrome.gyp:chrome', |
| 76 'test_registrar_constants', |
| 77 ], |
| 78 'sources': [ |
| 79 'test/test_registrar.cc', |
| 80 'test/test_registrar.rc', |
| 81 'test/test_registrar.rgs', |
| 82 'test/test_registrar_resource.h', |
| 83 ], |
| 84 'msvs_settings': { |
| 85 'VCLinkerTool': { |
| 86 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 87 }, |
| 88 }, |
| 89 }, |
| 90 { |
| 91 'target_name': 'test_registrar_constants', |
| 92 'type': 'static_library', |
| 93 'include_dirs': [ |
| 94 '..', |
| 95 ], |
| 96 'sources': [ |
| 97 'test/test_registrar_constants.cc', |
| 98 'test/test_registrar_constants.h', |
| 99 ], |
| 100 }, |
64 ], | 101 ], |
65 } | 102 } |
OLD | NEW |