Chromium Code Reviews| Index: win8/win8.gyp |
| diff --git a/win8/win8.gyp b/win8/win8.gyp |
| index 5790940de2040d8335f8b4212574a3809b3582ad..c70256925cbb583d16716eea2bfb24b8f26ec9a6 100644 |
| --- a/win8/win8.gyp |
| +++ b/win8/win8.gyp |
| @@ -51,8 +51,11 @@ |
| 'type': 'static_library', |
| 'dependencies': [ |
| '../base/base.gyp:base', |
| + 'test_registrar_constants', |
| ], |
| 'sources': [ |
| + 'test/metro_registration_helper.cc', |
| + 'test/metro_registration_helper.h', |
| 'test/open_with_dialog_async.cc', |
| 'test/open_with_dialog_async.h', |
| 'test/open_with_dialog_controller.cc', |
| @@ -61,5 +64,35 @@ |
| 'test/ui_automation_client.h', |
| ], |
| }, |
| + { |
| + 'target_name': 'test_registrar', |
| + 'type': 'executable', |
| + 'dependencies': [ |
| + '../base/base.gyp:base', |
| + 'test_registrar_constants', |
| + ], |
| + 'sources': [ |
| + 'test/test_registrar.cc', |
| + 'test/test_registrar.rc', |
| + 'test/test_registrar.rgs', |
| + 'test/test_registrar_resource.h', |
| + ], |
| + 'msvs_settings': { |
| + 'VCLinkerTool': { |
| + 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| + }, |
| + }, |
| + }, |
| + { |
| + 'target_name': 'test_registrar_constants', |
| + 'type': 'static_library', |
| + 'dependencies': [ |
| + '../base/base.gyp:base', |
|
grt (UTC plus 2)
2013/02/12 15:37:43
why?
robertshield
2013/02/12 16:57:08
WHY??!?!?!
Done.
|
| + ], |
| + 'sources': [ |
| + 'test/test_registrar_constants.cc', |
| + 'test/test_registrar_constants.h', |
| + ], |
| + }, |
| ], |
| } |