Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(560)

Unified Diff: win8/win8.gyp

Issue 12096064: Automatic Win8 default browser registration for the ash unittests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Dear Greg. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: win8/win8.gyp
diff --git a/win8/win8.gyp b/win8/win8.gyp
index 5790940de2040d8335f8b4212574a3809b3582ad..99a6d9da0473b5b957ce9e45f7ed74510e12a742 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': [
grt (UTC plus 2) 2013/02/12 18:17:27 why doesn't this have a build-time dependency on c
robertshield 2013/02/12 18:35:34 As discussed, now it does.
+ '../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',
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'test/test_registrar_constants.cc',
+ 'test/test_registrar_constants.h',
+ ],
+ },
],
}
« win8/test/metro_registration_helper.cc ('K') | « win8/test/test_registrar_resource.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698