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

Unified Diff: win8/delegate_execute/delegate_execute.gyp

Issue 10962023: Prefix Chrome switches with the switch prefix. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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/delegate_execute/delegate_execute.gyp
diff --git a/win8/delegate_execute/delegate_execute.gyp b/win8/delegate_execute/delegate_execute.gyp
index e4feff494771a15660fce12d5300918b48fdf689..a2e2770c6f68bd61c5f8b1b69ca061cba643a4ba 100644
--- a/win8/delegate_execute/delegate_execute.gyp
+++ b/win8/delegate_execute/delegate_execute.gyp
@@ -8,6 +8,13 @@
'includes': [
'../../build/win_precompile.gypi',
],
+ 'target_defaults': {
+ 'defines': [
+ # This define is required to pull in the new Win8 interfaces from system
+ # headers like ShObjIdl.h
+ 'NTDDI_VERSION=0x06020000',
+ ],
+ },
'targets': [
{
'target_name': 'delegate_execute',
@@ -29,18 +36,29 @@
'delegate_execute.rgs',
'delegate_execute_operation.cc',
'delegate_execute_operation.h',
+ 'delegate_execute_util.cc',
+ 'delegate_execute_util.h',
'resource.h',
],
- 'defines': [
- # This define is required to pull in the new Win8 interfaces from
- # system headers like ShObjIdl.h
- 'NTDDI_VERSION=0x06020000',
- ],
'msvs_settings': {
'VCLinkerTool': {
'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
},
},
},
+ {
+ 'target_name': 'delegate_execute_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../base/base.gyp:run_all_unittests',
+ '../../testing/gtest.gyp:gtest',
+ ],
+ 'sources': [
+ 'delegate_execute_util.cc',
+ 'delegate_execute_util.h',
+ 'delegate_execute_util_unittest.cc',
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698