| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'test/metro_registration_helper.h', | 58 'test/metro_registration_helper.h', |
| 59 'test/open_with_dialog_async.cc', | 59 'test/open_with_dialog_async.cc', |
| 60 'test/open_with_dialog_async.h', | 60 'test/open_with_dialog_async.h', |
| 61 'test/open_with_dialog_controller.cc', | 61 'test/open_with_dialog_controller.cc', |
| 62 'test/open_with_dialog_controller.h', | 62 'test/open_with_dialog_controller.h', |
| 63 'test/ui_automation_client.cc', | 63 'test/ui_automation_client.cc', |
| 64 'test/ui_automation_client.h', | 64 'test/ui_automation_client.h', |
| 65 ], | 65 ], |
| 66 }, | 66 }, |
| 67 { | 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', | 68 'target_name': 'test_registrar_constants', |
| 92 'type': 'static_library', | 69 'type': 'static_library', |
| 93 'include_dirs': [ | 70 'include_dirs': [ |
| 94 '..', | 71 '..', |
| 95 ], | 72 ], |
| 96 'sources': [ | 73 'sources': [ |
| 97 'test/test_registrar_constants.cc', | 74 'test/test_registrar_constants.cc', |
| 98 'test/test_registrar_constants.h', | 75 'test/test_registrar_constants.h', |
| 99 ], | 76 ], |
| 100 }, | 77 }, |
| 101 ], | 78 ], |
| 102 } | 79 } |
| OLD | NEW |